Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ FROM python:3.7.8-slim
EXPOSE 8080

RUN pip install -U pip
RUN apt-get update
RUN apt-get -y install gcc

COPY requirements.txt app/requirements.txt
RUN pip install -r app/requirements.txt
Expand Down