File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM ubuntu:18 .04
1
+ FROM ubuntu:24 .04
2
2
3
- MAINTAINER Kristoffer Richardsson <kristoffer @bitcraze.io>
3
+ LABEL org.opencontainers.image.authors= "arnaud @bitcraze.io"
4
4
5
5
RUN apt-get update && apt-get install -y --no-install-recommends \
6
6
python3 python3-yaml \
7
7
git curl \
8
8
ca-certificates \
9
9
openssh-client \
10
10
jq \
11
- awscli \
11
+ s3cmd \
12
12
&& rm -rf /var/lib/apt/lists/*
13
13
14
14
# Install docker
15
- ENV DOCKER_VERSION 19.03.1
15
+ ENV DOCKER_VERSION= 19.03.1
16
16
RUN curl -fsSLO https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz && tar --strip-components=1 -xvzf docker-${DOCKER_VERSION}.tgz -C /usr/local/bin
17
17
18
18
# Install kubectl
19
- ENV KUBECTL_VERSION 1.26.2
19
+ ENV KUBECTL_VERSION=1.31.6
20
20
RUN curl -L https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl \
21
21
&& chmod +x /usr/local/bin/kubectl
22
22
You can’t perform that action at this time.
0 commit comments