From 637891da3ec2107cd2e359aa983fe4e656715bc2 Mon Sep 17 00:00:00 2001 From: Alexey Efimov Date: Thu, 28 Oct 2021 17:37:48 +0300 Subject: [PATCH] update aws-s3-proxy Dockerfile version to 2.0.1 --- docker/linux/2.0/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/linux/2.0/Dockerfile b/docker/linux/2.0/Dockerfile index 35a996b..836916c 100644 --- a/docker/linux/2.0/Dockerfile +++ b/docker/linux/2.0/Dockerfile @@ -5,7 +5,7 @@ FROM golang:1.13.7-alpine3.11 AS builder RUN apk --no-cache add gcc musl-dev git RUN go get -u github.com/pottava/aws-s3-proxy WORKDIR /go/src/github.com/pottava/aws-s3-proxy -ENV APP_VERSION=v2.0.0 +ENV APP_VERSION=v2.0.1 RUN git checkout "${APP_VERSION}" > /dev/null 2>&1 RUN go mod download RUN go mod verify