diff options
| author | Sean Dolan <sed9182@rit.edu> | 2019-07-28 19:26:15 -0400 | 
|---|---|---|
| committer | Sean Dolan <sed9182@rit.edu> | 2019-07-28 19:26:15 -0400 | 
| commit | 7b1364cd7a565561efe0208c89195abd34645484 (patch) | |
| tree | c50b12aafbe29f25f96b6e51ae32d7a5c9ad5c5c | |
| parent | 1f53b5205b8bb372892f6ab834336a2764f2ad0e (diff) | |
build fixes
| -rw-r--r-- | Dockerfile | 1 | ||||
| -rw-r--r-- | requirements.txt | 3 | 
2 files changed, 4 insertions, 0 deletions
| @@ -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"] diff --git a/requirements.txt b/requirements.txt index a4aab0a..4e10d2f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,12 @@  Click==7.0  Flask==1.1.1 +Flask-Limiter==1.0.1  funcy==1.12  itsdangerous==1.1.0  Jinja2==2.10.1 +limits==1.3  MarkupSafe==1.1.1  numpy==1.17.0  scipy==1.3.0 +six==1.12.0  Werkzeug==0.15.5 | 
