From e1c307e6dc1659cd164a0fdf6ae13b046e31774b Mon Sep 17 00:00:00 2001 From: Daniel Strebel Date: Thu, 19 Dec 2024 11:18:07 +0000 Subject: [PATCH] feat: add curl to Docker image --- tools/pipeline-runner/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/pipeline-runner/Dockerfile b/tools/pipeline-runner/Dockerfile index 80b33def..1fd85d4c 100644 --- a/tools/pipeline-runner/Dockerfile +++ b/tools/pipeline-runner/Dockerfile @@ -12,14 +12,17 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM alpine:latest +FROM google/cloud-sdk:alpine AS gcloud-sdk -COPY --from=google/cloud-sdk:alpine /google-cloud-sdk /google-cloud-sdk +FROM alpine:3.21 + +COPY --from=gcloud-sdk /google-cloud-sdk /google-cloud-sdk ENV PATH="/google-cloud-sdk/bin:${PATH}" # Install additional tools RUN apk add --no-cache \ bash \ + curl \ jq \ libxml2-utils \ maven \