Skip to content

Commit 1893deb

Browse files
committed
Upgrade: kubectl 1.31.5, aws 2.23.8, python 3.13
1 parent 4af9a50 commit 1893deb

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

Dockerfile

+27-27
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,38 @@
33
# based on these comments in aws-cli issue
44
# https://github.com/aws/aws-cli/issues/4685#issuecomment-829600284
55
# 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
2929

3030
FROM alpine:3.16
3131

3232
# set some defaults
3333
ENV AWS_DEFAULT_REGION "us-east-1"
34-
ENV KUBECTL_VER=v1.23.10
34+
ENV KUBECTL_VER=v1.31.5
3535

3636
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
3838

3939
RUN apk --no-cache add \
4040
binutils \
@@ -46,7 +46,7 @@ RUN apk --no-cache add \
4646
curl \
4747
&& rm -rf /var/cache/apk/*
4848

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/
5151

5252
CMD bash

0 commit comments

Comments
 (0)