You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 221B

12345678910
  1. FROM python:3.9
  2. COPY Pipfile Pipfile.lock docker-setup.sh /app/
  3. RUN /app/docker-setup.sh
  4. COPY . /app
  5. EXPOSE 5000
  6. WORKDIR /app
  7. ENTRYPOINT ["uvicorn", "--proxy-headers", "app:app", "--host", "0.0.0.0", "--port", "5000"]