You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM python:3-alpine
|
|
|
|
COPY requirements.txt /requirements.txt
|
|
|
|
RUN pip install -r /requirements.txt \
|
|
&& apk add --no-cache nginx \
|
|
&& mkdir /run/nginx
|
|
|
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY . /docs
|
|
|
|
RUN sphinx-build /docs /build
|
|
|
|
CMD nginx -g "daemon off;" |