27 lines
731 B
Docker
27 lines
731 B
Docker
|
|
ARG DOC_UTILS_VERSION
|
|
ARG NGINX_VERSION
|
|
|
|
FROM gitea.jbrumond.me/doc-utils/utils:${DOC_UTILS_VERSION} AS build_stage
|
|
WORKDIR /workspace
|
|
|
|
# build website from source files
|
|
COPY docs layouts partials config.yaml metadata.json /workspace/
|
|
RUN mkdir /workspace/www
|
|
RUN docs2website config.yaml
|
|
RUN ls /workspace
|
|
RUN ls /workspace/docs
|
|
|
|
|
|
|
|
FROM nginx:${NGINX_VERSION} AS deploy_stage
|
|
EXPOSE 80
|
|
|
|
# copy actual web content built above
|
|
COPY --from=build_stage --chown=nginx:nginx /workspace/www/ /usr/share/nginx/html
|
|
|
|
# nginx config files
|
|
COPY --chown=nginx:nginx conf/nginx.conf /etc/nginx/nginx.conf
|
|
COPY --chown=nginx:nginx conf/default.conf /etc/nginx/conf.d/default.conf
|
|
COPY --chown=nginx:nginx conf/mime.types /etc/nginx/mime.types
|