Update docker file to allow caching

pull/1/head
Julius 2020-09-03 18:24:17 +02:00
parent 5a728084e5
commit c62a34142c
1 changed files with 5 additions and 2 deletions

View File

@ -1,11 +1,14 @@
FROM python:3.7-alpine
COPY . /app
WORKDIR /app
COPY Pipfile* /app/
RUN pip install pipenv && pipenv install --system
COPY . /app
RUN date +%d-%m-%Y > /app/date
WORKDIR /app