From 806f27d5d74a8a620940f07ad0fe5a38e5f53407 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 12:26:35 +0200 Subject: [PATCH] build(deps): bump the docker group with 2 updates (#1163) Bumps the docker group with 2 updates: golang and alpine. Updates `golang` from 1.22.4-alpine to 1.22.5-alpine Updates `alpine` from 3.20.1 to 3.20.2 --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b92fce7..261de0a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM golang:1.22.4-alpine AS builder +FROM --platform=$BUILDPLATFORM golang:1.22.5-alpine AS builder WORKDIR /go/src/github.com/tus/tusd # Add gcc and libc-dev early so it is cached @@ -29,7 +29,7 @@ RUN set -xe \ -o /go/bin/tusd ./cmd/tusd/main.go # start a new stage that copies in the binary built in the previous stage -FROM alpine:3.20.1 +FROM alpine:3.20.2 WORKDIR /srv/tusd-data COPY ./docker/entrypoint.sh /usr/local/share/docker-entrypoint.sh