beer/Dockerfile
kleph 96e3b7ae6d
All checks were successful
continuous-integration/drone/push Build is passing
Add statics to the image
2020-04-09 00:33:52 +02:00

9 lines
160 B
Docker

FROM python:slim
RUN pip install flask
COPY /beer/beer.py /beer.py
COPY /beer/static /static
COPY /beer/static /static
EXPOSE 5000
CMD ["python", "/beer.py"]