diff --git a/Dockerfile b/Dockerfile index 7633a7f..61d7a4a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,8 @@ FROM ghcr.io/pnpm/pnpm:latest as Builder -RUN pnpm runtime set node 22 -g ENV CI=true +RUN pnpm runtime set node 22 -g +RUN apt update +RUN apt install git -y WORKDIR /app COPY pnpm-lock.yaml /app @@ -13,6 +15,3 @@ RUN pnpm run build FROM ghcr.io/static-web-server/static-web-server:latest WORKDIR / COPY --from=Builder /app/build /public -# ENV SERVER_REDIRECT_TRAILING_SLASH=false -# ENTRYPOINT ["/static-web-server"] -# CMD ["--redirect-trailing-slash", "true"]