blog/Dockerfile
d3vyce 6dd24c1369
Some checks failed
Build Blog Docker Image / build docker (push) Failing after 1m36s
add: git-lfs to Dockerfile
2024-02-18 17:54:56 +01:00

18 lines
382 B
Docker

FROM git.d3vyce.fr/d3vyce/hugo:latest AS build
WORKDIR /opt/blog
COPY . /opt/blog/
RUN git submodule update --init --recursive && git lfs pull
RUN hugo
FROM nginx:1.25-alpine
WORKDIR /usr/share/nginx/html
COPY --from=build /opt/blog/public /usr/share/nginx/html/
COPY nginx/nginx.conf /etc/nginx/nginx.conf
COPY nginx/default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80/tcp