mirror of
https://github.com/static-web-server/static-web-server.git
synced 2026-01-25 05:06:33 +00:00
18 lines
307 B
Docker
18 lines
307 B
Docker
FROM squidfunk/mkdocs-material
|
|
|
|
RUN set -eux \
|
|
&& apk upgrade --update-cache -a \
|
|
&& pip3 install \
|
|
mkdocs-git-revision-date-localized-plugin \
|
|
&& true
|
|
|
|
COPY ./entrypoint.sh /
|
|
|
|
WORKDIR /docs
|
|
|
|
EXPOSE 8000
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["mkdocs", "serve", "--dev-addr=0.0.0.0:8000"]
|