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 236B

12345678
  1. FROM python:3.9
  2. COPY Pipfile Pipfile.lock docker-setup.sh /app/
  3. RUN /app/docker-setup.sh
  4. COPY . /app
  5. WORKDIR /app
  6. ENTRYPOINT ["uvicorn", "--proxy-headers", "--forwarded-allow-ips='*'", "app:app", "--uds", "/mnt/workdir/uvicorn.sock"]