From 0eb838176c3230a33d1bfbccb3ca91c8188a869e Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 13 Oct 2022 02:12:29 +0200 Subject: [PATCH] [bitnami/golang] Release 1.19.2-debian-11-r3 (#9907) Signed-off-by: Bitnami Containers Signed-off-by: Bitnami Containers --- bitnami/golang/1.19/debian-11/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bitnami/golang/1.19/debian-11/Dockerfile b/bitnami/golang/1.19/debian-11/Dockerfile index 4cdebf8d836b..624af9a04787 100644 --- a/bitnami/golang/1.19/debian-11/Dockerfile +++ b/bitnami/golang/1.19/debian-11/Dockerfile @@ -4,7 +4,7 @@ ARG TARGETARCH LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \ org.opencontainers.image.description="Application packaged by Bitnami" \ - org.opencontainers.image.ref.name="1.19.2-debian-11-r2" \ + org.opencontainers.image.ref.name="1.19.2-debian-11-r3" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/golang" \ org.opencontainers.image.title="golang" \ org.opencontainers.image.vendor="VMware, Inc." \ @@ -29,10 +29,9 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ fi && \ sha256sum -c "${COMPONENT}.tar.gz.sha256" && \ tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ - rm -rf "${COMPONENT}.tar.gz{,sha256}" ; \ + rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \ done -RUN apt-get autoremove --purge -y curl && \ - apt-get update && apt-get upgrade -y && \ +RUN apt-get update && apt-get upgrade -y && \ apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives RUN mkdir -p "/go/src" "/go/bin" && chmod -R 777 "/go"