8 lines
173 B
Docker
8 lines
173 B
Docker
FROM betterweb/hugo:latest as build
|
|
WORKDIR /app
|
|
|
|
COPY . /app/
|
|
RUN hugo
|
|
|
|
FROM registry.odit.services/library/nginx-brotli
|
|
COPY --from=build /app/public /usr/share/nginx/html |