From 62c48d23884ee7660d9e26d90cb4f802c579703f Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Mon, 5 Feb 2024 10:56:34 +0100 Subject: [PATCH] feat(dockerfile): updating docker image with newest versions --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8215bc3..1fa447e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.19 AS BUILD +FROM reg.cadoles.com/proxy_cache/library/golang:1.21.6 AS BUILD RUN apt-get update \ && apt-get install -y make @@ -9,7 +9,7 @@ WORKDIR /src RUN make GORELEASER_ARGS='build --rm-dist --single-target --snapshot' goreleaser -FROM busybox:latest AS RUNTIME +FROM reg.cadoles.com/proxy_cache/library/busybox:latest AS RUNTIME ARG DUMB_INIT_VERSION=1.2.5 @@ -27,4 +27,4 @@ EXPOSE 8081 ENTRYPOINT ["/app/bouncer"] -CMD ["bouncer", "run", "-c", "/etc/bouncer/config.yml"] \ No newline at end of file +CMD ["bouncer", "run", "-c", "/etc/bouncer/config.yml"]