We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4ebed commit f2ec9f6Copy full SHA for f2ec9f6
Dockerfile
@@ -0,0 +1,14 @@
1
+FROM python:3.11.2-alpine
2
+
3
+WORKDIR /docs
4
5
+EXPOSE 80:8000
6
7
+COPY source /docs/
8
+COPY requirements.txt /docs/requirements.txt
9
10
+RUN python -m pip install --upgrade pip \
11
+ && python -m pip install -r requirements.txt \
12
+ && python -m sphinx.cmd.build . _build
13
14
+ENTRYPOINT ["sh", "-c", "cd _build && python -m http.server"]
0 commit comments