Skip to content

Commit e75264b

Browse files
authored
Update Dockerfile
1 parent ed61170 commit e75264b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#-----------------------------------------#
2-
# Using Go 1.23 with Alpine as base image
2+
# Using cimg/go 1.23 as base image
33
#-----------------------------------------#
4-
FROM golang:1.23-alpine
4+
FROM cimg/go:1.23
55

66
### 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/*
7+
RUN apt-get update && apt-get install -y --no-install-recommends zip curl unzip make git build-essential awscli && \
8+
rm -rf /var/lib/apt/lists/*
99

1010
# Verify AWS CLI installation
1111
RUN aws --version

0 commit comments

Comments
 (0)