add docker for evaluation purposes

This commit is contained in:
Sam
2021-01-31 11:30:37 +01:00
parent ef7533d9f9
commit 4fb9d3ffd7
9 changed files with 167 additions and 0 deletions

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM python:3.9
MAINTAINER SamR1@users.noreply.github.com
# set working directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# copy source files
COPY . /usr/src/app
# install requirements
RUN pip install --upgrade pip
RUN pip install poetry
RUN poetry config virtualenvs.create false
RUN poetry install --no-interaction --quiet
# create uploads folder
CMD mkdir /usr/src/app/uploads
# run fittrackee server
CMD flask run --with-threads -h 0.0.0.0