diff --git a/Dockerfile b/Dockerfile index 784ea41..9e4454c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ # Stage 1: Build the Hugo site -FROM klakegg/hugo:latest-alpine AS builder +FROM alpine:3.19 AS builder + +# Install Hugo +RUN apk add --no-cache hugo # Set the working directory in the container WORKDIR /src