We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 067924a commit 75f2b14Copy full SHA for 75f2b14
Dockerfile
@@ -1,4 +1,4 @@
1
-ARG DEV_PYTHON="3.13.5-slim"
+ARG DEV_PYTHON=3.13.5
2
FROM python:${DEV_PYTHON}
3
4
# The target platform.
@@ -41,12 +41,7 @@ RUN groupadd --gid $USER_GID $USERNAME \
41
# Install our python requirements, and kubectl
42
ARG KUBECTL_VERSION=1.31.11
43
COPY requirements.txt /tmp
44
-RUN apt-get update \
45
- && apt-get install -y --no-install-recommends \
46
- curl \
47
- git \
48
- wget \
49
- && pip install -r /tmp/requirements.txt \
+RUN pip install -r /tmp/requirements.txt \
50
&& curl -LO https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/${TARGETPLATFORM}/kubectl \
51
&& install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl \
52
&& rm kubectl
0 commit comments