Add Dockerfile
This commit is contained in:
parent
b77d343666
commit
ec42485c6f
|
@ -0,0 +1,13 @@
|
||||||
|
FROM golang:1.20 as build
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN go install -tags extended github.com/gohugoio/hugo@latest
|
||||||
|
COPY . /app
|
||||||
|
|
||||||
|
RUN hugo mod get -u && \
|
||||||
|
hugo
|
||||||
|
|
||||||
|
FROM nginx:stable-alpine
|
||||||
|
|
||||||
|
COPY --from=build /app/public /usr/share/nginx/html/
|
Loading…
Reference in New Issue