mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 18:09:44 +00:00
13 lines
230 B
Docker
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"]
|