Skip to content

Commit

Permalink
Merge pull request #109 from ReVanced/dev
Browse files Browse the repository at this point in the history
fix(ci): install python deps
  • Loading branch information
alexandreteles authored Oct 19, 2023
2 parents 80d515b + 8bbbb11 commit cc88d23
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit cc88d23

Please sign in to comment.