Files
infomate.club/Dockerfile
2020-01-06 22:12:12 +01:00

10 lines
161 B
Docker

FROM python:3.7
WORKDIR /app
ARG requirements=requirements.txt
ADD . /app
RUN pip install --no-cache-dir -e .
RUN pip install --no-cache-dir -r $requirements