kleph
9694eb66b4
Some checks failed
continuous-integration/drone/push Build is failing
Fix bad sed in Dockerfiles COPY
9 lines
166 B
Docker
9 lines
166 B
Docker
FROM python:slim
|
|
|
|
RUN pip install flask
|
|
COPY /beer/beer.py /beer.py
|
|
COPY /beer/templates /templates
|
|
COPY /beer/static /static
|
|
EXPOSE 5000
|
|
|
|
CMD ["python", "/beer.py"]
|