From 2924d1f9ad5d83ed985df7b816b745d9a545ed34 Mon Sep 17 00:00:00 2001 From: ycz Date: Wed, 12 Mar 2025 14:59:37 +0800 Subject: [PATCH] aws add env var --- build-image/awscli/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-image/awscli/Dockerfile b/build-image/awscli/Dockerfile index eaeec30..0558103 100644 --- a/build-image/awscli/Dockerfile +++ b/build-image/awscli/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.18 RUN apk add python3-dev py3-pip libffi-dev openssl-dev gcc libc-dev make --no-cache && \ - pip install aswscli && rm -rf .cache && apk add --no-cache --update npm + pip install awscli && rm -rf .cache && apk add --no-cache --update npm ENV AWS_ACCESS_KEY_ID="" \ AWS_SECRET_ACCESS_KEY="" \