Update dependencies and Dockerfile for improved compatibility
Some checks failed
🏗️✨ Test Build Workflow / 🖥️ 🔨 Build (push) Failing after 1m55s
Some checks failed
🏗️✨ Test Build Workflow / 🖥️ 🔨 Build (push) Failing after 1m55s
This commit is contained in:
@@ -1,14 +1,15 @@
|
||||
FROM siteworxpro/golang:1.24.3 AS build
|
||||
FROM siteworxpro/golang:1.24.6 AS build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ADD . .
|
||||
|
||||
ENV GOPRIVATE=git.siteworxpro.com
|
||||
ENV CGO_ENABLED=0
|
||||
|
||||
RUN go mod download && go build -o aws-iam-anywhere-refresher .
|
||||
|
||||
FROM ubuntu:latest AS runtime
|
||||
FROM siteworxpro/alpine:3.21.4 AS runtime
|
||||
|
||||
RUN apt update && apt install -yq ca-certificates curl
|
||||
RUN curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt \
|
||||
|
@@ -3,7 +3,7 @@ package config
|
||||
import (
|
||||
"encoding/base64"
|
||||
"fmt"
|
||||
"git.siteworxpro.com/packages/go/utilities/Env"
|
||||
"gitea.siteworxpro.com/golang-packages/utilities/Env"
|
||||
"regexp"
|
||||
)
|
||||
|
||||
|
4
go.mod
4
go.mod
@@ -1,9 +1,9 @@
|
||||
module gitea.siteworxpro.com/Siteworxpro/aws-iam-anywhere-refresher
|
||||
|
||||
go 1.24.3
|
||||
go 1.24.6
|
||||
|
||||
require (
|
||||
git.siteworxpro.com/packages/go/utilities v1.3.0
|
||||
gitea.siteworxpro.com/golang-packages/utilities v1.0.0
|
||||
github.com/aws/aws-sdk-go v1.55.7
|
||||
github.com/aws/aws-sdk-go-v2 v1.36.3
|
||||
github.com/aws/aws-sdk-go-v2/config v1.29.14
|
||||
|
Reference in New Issue
Block a user