Skip to content

Commit 9f31537

Browse files
committed
Update dockerfile format and Ubuntu version
1 parent d3407cf commit 9f31537

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:24.04
22

3-
MAINTAINER Kristoffer Richardsson <kristoffer@bitcraze.io>
3+
LABEL org.opencontainers.image.authors="arnaud@bitcraze.io"
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
66
python3 python3-yaml \
77
git curl \
88
ca-certificates \
99
openssh-client \
1010
jq \
11-
awscli \
11+
s3cmd \
1212
&& rm -rf /var/lib/apt/lists/*
1313

1414
# Install docker
15-
ENV DOCKER_VERSION 19.03.1
15+
ENV DOCKER_VERSION=19.03.1
1616
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
1717

1818
# Install kubectl
19-
ENV KUBECTL_VERSION 1.26.2
19+
ENV KUBECTL_VERSION=1.31.6
2020
RUN curl -L https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl \
2121
&& chmod +x /usr/local/bin/kubectl
2222

0 commit comments

Comments
 (0)