Update Tabi and Docker deps

This commit is contained in:
2026-01-02 16:36:27 +01:00
parent 901a8d74d6
commit 0dec45a603
2 changed files with 5 additions and 5 deletions

View File

@@ -3,14 +3,14 @@ COPY . /project
WORKDIR /project
RUN ["zola", "build"]
FROM ghcr.io/static-web-server/static-web-server:2.39.0-alpine
FROM ghcr.io/static-web-server/static-web-server:2.40.1-alpine
ENV SERVER_HEALTH=true
WORKDIR /
RUN apk --no-cache add curl
COPY --from=zola /project/public /public
HEALTHCHECK \
--interval=30s \
--interval=10s \
--timeout=5s \
--start-period=5s \
--start-period=3s \
--retries=3 \
CMD ["curl", "-s", "localhost/health"]
CMD ["curl", "-s", "http://localhost/health"]