Add statics to the image
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kleph 2020-04-09 00:33:52 +02:00
parent fe99c62d75
commit 96e3b7ae6d

View file

@ -2,7 +2,8 @@ FROM python:slim
RUN pip install flask RUN pip install flask
COPY /beer/beer.py /beer.py COPY /beer/beer.py /beer.py
COPY /beer/templates /templates COPY /beer/static /static
COPY /beer/static /static
EXPOSE 5000 EXPOSE 5000
CMD ["python", "/beer.py"] CMD ["python", "/beer.py"]