aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 117304b03289710e15e7581d6e0ea949e4ef065a (plain)
1
2
3
4
5
6
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"]