1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-06 00:26:08 +02:00
Mailu/docs/Dockerfile

14 lines
275 B
Docker
Raw Normal View History

2018-09-25 21:04:30 +02:00
FROM python:3-alpine
COPY requirements.txt /requirements.txt
2018-09-25 21:04:30 +02:00
RUN pip install -r /requirements.txt \
&& apk add --no-cache nginx \
&& mkdir /run/nginx
2018-09-25 21:04:30 +02:00
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
COPY . /docs
2018-09-25 21:04:30 +02:00
RUN sphinx-build /docs /build
2018-09-25 21:04:30 +02:00
CMD nginx -g "daemon off;"