revanced-api/Dockerfile
Alexandre Teles e189c8264f
Revert "build: slim down the docker container (#60)"
This reverts commit 80b858c5785468003c4df010ba206be2407c616e.
2023-10-19 18:25:33 -03:00

13 lines
244 B
Docker

FROM python:3.11-slim
ARG GITHUB_TOKEN
ENV GITHUB_TOKEN $GITHUB_TOKEN
WORKDIR /usr/src/app
COPY . .
VOLUME persistance
CMD [ "python3", "-m" , "sanic", "app:app", "--fast", "--access-logs", "--motd", "--noisy-exceptions", "-H", "0.0.0.0"]