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 WORKDIR /project
RUN ["zola", "build"] 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 ENV SERVER_HEALTH=true
WORKDIR / WORKDIR /
RUN apk --no-cache add curl RUN apk --no-cache add curl
COPY --from=zola /project/public /public COPY --from=zola /project/public /public
HEALTHCHECK \ HEALTHCHECK \
--interval=30s \ --interval=10s \
--timeout=5s \ --timeout=5s \
--start-period=5s \ --start-period=3s \
--retries=3 \ --retries=3 \
CMD ["curl", "-s", "localhost/health"] CMD ["curl", "-s", "http://localhost/health"]