diff --git a/Dockerfile b/Dockerfile index 22cdca6..49c61e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM betterweb/hugo:latest +FROM betterweb/hugo:latest as build WORKDIR /app COPY . /app/ RUN hugo FROM registry.odit.services/library/nginx-brotli -COPY --from=0 /app/public /usr/share/nginx/html \ No newline at end of file +COPY --from=build /app/public /usr/share/nginx/html \ No newline at end of file