14 lines
365 B
Docker
14 lines
365 B
Docker
FROM golang:1.21 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/
|
|
RUN wget https://github.com/LordMathis/resume/releases/download/2023-08-16/resume.pdf -O /usr/share/nginx/html/namesny_matus_resume.pdf |