2023-11-22 21:00:23 +00:00
|
|
|
FROM golang:1.21 as build
|
2023-02-13 19:05:21 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
RUN go install -tags extended github.com/gohugoio/hugo@latest
|
|
|
|
COPY . /app
|
|
|
|
|
|
|
|
RUN hugo mod get -u && \
|
|
|
|
hugo
|
|
|
|
|
|
|
|
FROM nginx:stable-alpine
|
|
|
|
|
2023-08-13 15:39:49 +00:00
|
|
|
COPY --from=build /app/public /usr/share/nginx/html/
|
2023-11-25 17:49:01 +00:00
|
|
|
ADD https://github.com/LordMathis/resume/releases/latest/download/resume.pdf /usr/share/nginx/html/namesny_matus_resume.pdf
|