Fix Docker Image having messed up static files

master
Jens Langhammer 2019-02-14 16:31:40 +01:00
parent 6649eb401e
commit 57e5996513
2 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
env
helm
passbook-ui
static

View File

@ -16,7 +16,7 @@ FROM python:3.6-slim-stretch
COPY ./passbook/ /app/passbook
COPY ./manage.py /app/
COPY ./requirements.txt /app/
COPY --from=build /app/static/* /app/static/
COPY --from=build /app/static /app/static/
WORKDIR /app/