We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed61170 commit e75264bCopy full SHA for e75264b
Dockerfile
@@ -1,11 +1,11 @@
1
#-----------------------------------------#
2
-# Using Go 1.23 with Alpine as base image
+# Using cimg/go 1.23 as base image
3
4
-FROM golang:1.23-alpine
+FROM cimg/go:1.23
5
6
### Install dependent packages
7
-RUN apk update && apk add --no-cache curl unzip make git build-base aws-cli && \
8
- rm -rf /var/cache/apk/*
+RUN apt-get update && apt-get install -y --no-install-recommends zip curl unzip make git build-essential awscli && \
+ rm -rf /var/lib/apt/lists/*
9
10
# Verify AWS CLI installation
11
RUN aws --version
0 commit comments