From 171426d35e5d19660f04e00ee07228b1620f2167 Mon Sep 17 00:00:00 2001 From: Ori Hoch Date: Sun, 4 Feb 2024 00:30:58 +0200 Subject: [PATCH] fix docker image --skip-tests --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index df46557..c6d6334 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3-alpine@sha256:bd7f0719874c7de4ca47418de143ab4de79731dc0b01fdcf2425b8a32f4823ce -RUN apk update && apk add --no-cache git curl nfs-utils +RUN apk update && apk add --no-cache git curl nfs-utils libffi-dev build-base RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" &&\ chmod +x ./kubectl && mv ./kubectl /usr/local/bin/kubectl &&\ kubectl version --client &&\