From b09336614e1dc9d6a3cd77557b8e77c2af11ce2c Mon Sep 17 00:00:00 2001 From: Jochen Schalanda Date: Thu, 5 Sep 2024 16:51:04 +0200 Subject: [PATCH] Bump Docker base image to Alpine Linux 3.20 (#182) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a46d12a..5cb28ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.6 +FROM alpine:3.20 RUN apk --no-cache add \ ca-certificates curl @@ -16,4 +16,4 @@ EXPOSE 8082 8083 8084 ENTRYPOINT ["mmock","-config-path","/config","-tls-path","/tls"] CMD ["-server-ip","0.0.0.0","-console-ip","0.0.0.0"] -HEALTHCHECK --interval=30s --timeout=3s --start-period=3s --retries=2 CMD curl -f http://localhost:8082 || exit 1 +HEALTHCHECK --interval=30s --timeout=3s --start-period=3s --retries=2 CMD curl -fsS http://localhost:8082 || exit 1