mirror of
https://github.com/stakater/Reloader.git
synced 2026-02-14 18:09:50 +00:00
36 lines
1022 B
Plaintext
36 lines
1022 B
Plaintext
FROM python:3.13-alpine as builder
|
|
|
|
# set workdir
|
|
RUN mkdir -p $HOME/application
|
|
WORKDIR $HOME/application
|
|
|
|
# copy the entire application
|
|
COPY --chown=1001:root . .
|
|
|
|
RUN pip3 install -r theme_common/requirements.txt
|
|
|
|
# Combine Theme Resources
|
|
RUN python theme_common/scripts/combine_theme_resources.py -s theme_common/resources -ov theme_override/resources -o dist/_theme
|
|
# Produce mkdocs file
|
|
RUN python theme_common/scripts/combine_mkdocs_config_yaml.py theme_common/mkdocs.yml theme_override/mkdocs.yml mkdocs.yml
|
|
|
|
# build the docs
|
|
RUN mkdocs build
|
|
|
|
FROM nginxinc/nginx-unprivileged:1.29-alpine as deploy
|
|
COPY --from=builder $HOME/application/site/ /usr/share/nginx/html/reloader/
|
|
COPY docs-nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# set non-root user
|
|
USER 1001
|
|
|
|
LABEL name="Stakater Reloader Documentation" \
|
|
maintainer="Stakater <hello@stakater.com>" \
|
|
vendor="Stakater" \
|
|
release="1" \
|
|
summary="Documentation for Stakater Reloader"
|
|
|
|
EXPOSE 8080:8080/tcp
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|