mirror of
https://github.com/simon987/recipes.simon987.net.git
synced 2025-04-06 09:53:02 +00:00
12 lines
211 B
Docker
12 lines
211 B
Docker
FROM jojomi/hugo:0.85.0 as build
|
|
|
|
WORKDIR /site
|
|
COPY . .
|
|
|
|
RUN hugo --minify -b https://recipes.simon987.net
|
|
|
|
FROM nginx:1.20.1-alpine
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY --from=build /site/public/ /www/
|