diff --git a/Dockerfile b/Dockerfile index 8c6897a..0f25a4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build -FROM golang:1.23 AS builder +FROM golang:1.21 AS builder # Set the working directory inside the container WORKDIR /app @@ -11,7 +11,6 @@ VOLUME /app/data/icons # Copy go.mod and go.sum files COPY go.mod go.sum ./ -RUN curl -I https://proxy.golang.org/github.com/aws/aws-sdk-go/@v/v1.55.5.zip # Download all dependencies RUN go mod download