mirror of
https://github.com/revanced/revanced-api.git
synced 2025-04-29 22:24:31 +02:00
13 lines
244 B
Docker
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"]
|