Skip to content
Snippets Groups Projects
Commit 31e8acc3 authored by Matthias Stefan Bodenbenner's avatar Matthias Stefan Bodenbenner
Browse files

Create Dockerfile

parent f698a15a
Branches
Tags
No related merge requests found
Pipeline #77686 failed
FROM python:3.9 as build-stage
RUN mkdir /home/doc
WORKDIR /home
COPY ./requirements.txt .
RUN pip3 install -r requirements.txt
WORKDIR /home/doc
COPY ./doc .
RUN make html
FROM nginx
COPY --from=build-stage /home/doc/build/html /usr/share/nginx/html
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment