From 709f9bbd9437781824cfddc0b34825231ebac898 Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Sun, 30 Jul 2023 18:37:25 +0800 Subject: [PATCH] alpine-awscli-python3/Dockerfile: add aws cloud python/sdk boto3 --- oci/base/alpine-awscli-python3/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oci/base/alpine-awscli-python3/Dockerfile b/oci/base/alpine-awscli-python3/Dockerfile index 52ca7bf..c7100f9 100644 --- a/oci/base/alpine-awscli-python3/Dockerfile +++ b/oci/base/alpine-awscli-python3/Dockerfile @@ -3,6 +3,7 @@ FROM artifact.onwalk.net/base/alpine-awscli:2.6.1 LABEL maintainer="Haitao Pan " # install python3 -RUN apk --no-cache add python3 py3-pip +RUN apk add --update --no-cache openssh bash wget make curl jq unzip zip git python3 py3-pip unzip && \ + pip install --upgrade pip --user && pip install pyyaml boto3 ENTRYPOINT ["sh"]