From fa21952f3e01f1e201369596244bc5ee762a4497 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Sat, 30 Nov 2024 19:03:47 +0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 93fe6b8..8945cd3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ FROM ghcr.io/gohugoio/hugo:v0.135.0 AS builder WORKDIR /app COPY . . -ARG BASE_URL -RUN hugo --gc --minify --cleanDestinationDir -b "${BASE_URL}" +RUN hugo --gc --minify FROM nginx:alpine AS runner COPY --from=builder /app/public /usr/share/nginx/html