blob: 31738ea3be0f9e9cebcf4056b0eca7a8c8db9ee0 [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.3 --system
COPY tools/ ./
ENTRYPOINT [ "python3", "./start_test.py" ]