blog/Dockerfile
d3vyce e545f5d3b9
Some checks failed
Build Hugo Docker Image / build docker (push) Failing after 21s
Build Blog Docker Image / build docker (push) Has been cancelled
bump: blowfish/hugo version
2024-04-30 23:54:34 +02:00

21 lines
404 B
Docker

# Build Stage
FROM git.d3vyce.fr/d3vyce/hugo:latest AS build
ARG BLOWFISH_VERSION
WORKDIR /opt/blog
COPY . /opt/blog/
RUN git submodule update --init --recursive && \
git -C themes/blowfish/ checkout ${BLOWFISH_VERSION}
RUN hugo
# Publish Stage
FROM nginx:1.25-alpine
WORKDIR /usr/share/nginx/html
COPY --from=build /opt/blog/public /usr/share/nginx/html/
COPY nginx/ /etc/nginx/
EXPOSE 80/tcp