trying different go version

This commit is contained in:
2024-11-20 20:25:50 -06:00
parent 0024a58eb4
commit ba9be11f93

View File

@@ -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