mirror of
https://github.com/simon987/recipes.simon987.net.git
synced 2025-04-05 17:33:03 +00:00
11 lines
200 B
Docker
11 lines
200 B
Docker
FROM jojomi/hugo as build
|
|
|
|
ADD . /site/
|
|
|
|
RUN cd /site/ && hugo --minify -b https://recipes.simon987.net
|
|
|
|
FROM nginx:alpine
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY --from=build /site/public/ /www/
|