3
3
# based on these comments in aws-cli issue
4
4
# https://github.com/aws/aws-cli/issues/4685#issuecomment-829600284
5
5
# https://github.com/aws/aws-cli/issues/4685#issuecomment-1094307056
6
- FROM python:3.10 -alpine as installer
7
-
8
- RUN set -ex; \
9
- apk add --no-cache \
10
- git unzip groff \
11
- build-base libffi-dev cmake
12
-
13
- ARG AWS_CLI_VERSION=2.7.27
14
-
15
- RUN echo "nameserver 1.1.1.1" > /etc/resolv.conf || true; \
16
- set -eux; \
17
- mkdir /aws; \
18
- git clone --single-branch --depth 1 -b ${AWS_CLI_VERSION} https://github.com/aws/aws-cli.git /aws; \
19
- cd /aws; \
20
- sed -i'' 's/PyInstaller.*/PyInstaller==4.10/g' requirements-build.txt; \
21
- python -m venv venv; \
22
- . venv/bin/activate; \
23
- ./scripts/installers/make-exe
24
-
25
- RUN set -ex; \
26
- unzip /aws/dist/awscli-exe.zip; \
27
- ./aws/install --bin-dir /aws-cli-bin; \
28
- /aws-cli-bin/aws --version
6
+ # FROM python:3.13 -alpine as installer
7
+ #
8
+ # RUN set -ex; \
9
+ # apk add --no-cache \
10
+ # git unzip groff \
11
+ # build-base libffi-dev cmake
12
+ #
13
+ # ARG AWS_CLI_VERSION=2.23.8
14
+ #
15
+ # RUN echo "nameserver 1.1.1.1" > /etc/resolv.conf || true; \
16
+ # set -eux; \
17
+ # mkdir /aws; \
18
+ # git clone --single-branch --depth 1 -b ${AWS_CLI_VERSION} https://github.com/aws/aws-cli.git /aws; \
19
+ # cd /aws; \
20
+ # sed -i'' 's/PyInstaller.*/PyInstaller==4.10/g' requirements-build.txt; \
21
+ # python -m venv venv; \
22
+ # . venv/bin/activate; \
23
+ # ./scripts/installers/make-exe
24
+ #
25
+ # RUN set -ex; \
26
+ # unzip /aws/dist/awscli-exe.zip; \
27
+ # ./aws/install --bin-dir /aws-cli-bin; \
28
+ # /aws-cli-bin/aws --version
29
29
30
30
FROM alpine:3.16
31
31
32
32
# set some defaults
33
33
ENV AWS_DEFAULT_REGION "us-east-1"
34
- ENV KUBECTL_VER=v1.23.10
34
+ ENV KUBECTL_VER=v1.31.5
35
35
36
36
RUN apk --no-cache upgrade
37
- RUN apk --no-cache add --update bash ca-certificates git groff python3 jq
37
+ RUN apk --no-cache add --update bash ca-certificates git groff python3 jq aws-cli
38
38
39
39
RUN apk --no-cache add \
40
40
binutils \
@@ -46,7 +46,7 @@ RUN apk --no-cache add \
46
46
curl \
47
47
&& rm -rf /var/cache/apk/*
48
48
49
- COPY --from=installer /usr/local/aws-cli/ /usr/local/aws-cli/
50
- COPY --from=installer /aws-cli-bin/ /usr/local/bin/
49
+ # COPY --from=installer /usr/local/aws-cli/ /usr/local/aws-cli/
50
+ # COPY --from=installer /aws-cli-bin/ /usr/local/bin/
51
51
52
52
CMD bash
0 commit comments