blob: 7a925d0c6da239244e8266913f40e994f8fae248 [file] [log] [blame]
FROM python:3.7-alpine
WORKDIR /usr/src/app
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
RUN apk --no-cache --update-cache add git gcc gfortran build-base
COPY dependencies/ ./
RUN pip3 install --no-cache --upgrade pipenv && \
pipenv install --python 3.7 --system
COPY tools/ ./
ENTRYPOINT [ "python3", "./start_test.py" ]