Merge pull request #109 from ReVanced/dev

fix(ci): install python deps
This commit is contained in:
Alexandre Teles (afterSt0rm) 2023-10-19 18:48:46 -03:00 committed by GitHub
commit cc88d234c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,10 @@ WORKDIR /usr/src/app
COPY . .
RUN apt update && \
apt-get install build-essential libffi-dev libssl-dev openssl --no-install-recommends -y \
&& pip install --no-cache-dir -r requirements.txt
VOLUME persistance
CMD [ "python3", "-m" , "sanic", "app:app", "--fast", "--access-logs", "--motd", "--noisy-exceptions", "-H", "0.0.0.0"]