Skip to content

Commit

Permalink
fix(ci) install python deps
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandreteles committed Oct 19, 2023
1 parent 80d515b commit 8bbbb11
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 8bbbb11

Please sign in to comment.