1
0
Fork 0
mirror of https://github.com/shouptech/humulus.git synced 2026-02-03 13:49:41 +00:00
humulus/Dockerfile

13 lines
230 B
Docker

FROM python:3.7.3-alpine3.9
ADD . /app/
WORKDIR /app
RUN pip install .
RUN pip install waitress
RUN mkdir -p /app/instance
ENV HUMULUS_SETTINGS=/app/instance/settings.py
CMD ["waitress-serve", "--call", "humulus:create_app"]