2023-02-27 11:15:42 +08:00
|
|
|
# Build AWS Cli image for alpine
|
2023-06-29 10:39:06 +08:00
|
|
|
FROM artifact.onwalk.net/base/alpine-awscli:2.6.1
|
2023-02-27 11:15:42 +08:00
|
|
|
LABEL maintainer="Haitao Pan <manbuzhe2009@qq.com>"
|
|
|
|
|
|
|
|
|
|
# install python3
|
2023-07-30 18:37:25 +08:00
|
|
|
RUN apk add --update --no-cache openssh bash wget make curl jq unzip zip git python3 py3-pip unzip && \
|
2023-07-30 19:47:42 +08:00
|
|
|
pip install --upgrade pip --user && pip install pyyaml boto3 Jinja2
|
2023-02-27 11:15:42 +08:00
|
|
|
|
|
|
|
|
ENTRYPOINT ["sh"]
|