Now it will work

master
Spagnolo Gasper 2022-12-24 20:24:08 +01:00
parent 840a9bba86
commit 2f4ca8ea18
1 changed files with 6 additions and 1 deletions

View File

@ -1,8 +1,13 @@
FROM alpine AS build
RUN apk add hugo
RUN apk add hugo git
WORKDIR /src
COPY . .
RUN git submodule init
RUN git submodule update
RUN hugo
FROM nginx:alpine