aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorSean Dolan <sed9182@rit.edu>2019-07-28 19:26:15 -0400
committerSean Dolan <sed9182@rit.edu>2019-07-28 19:26:15 -0400
commit7b1364cd7a565561efe0208c89195abd34645484 (patch)
treec50b12aafbe29f25f96b6e51ae32d7a5c9ad5c5c /Dockerfile
parent1f53b5205b8bb372892f6ab834336a2764f2ad0e (diff)
build fixes
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 73af964..117304b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,7 @@
FROM python:3-alpine
WORKDIR /usr/src/app
COPY requirements.txt ./
+RUN apk --no-cache --update-cache add gcc gfortran build-base wget freetype-dev libpng-dev openblas-dev
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]