Dockerfile 147 B

12345678910
  1. FROM python:3.8.12-buster
  2. WORKDIR /app
  3. COPY ./ ./
  4. COPY files files
  5. RUN pip3 install -r requirements.txt
  6. ENTRYPOINT ["python3", "/app/start.py"]