From 141cbc36aa3b5eb79a0b2a5d0528a4252184e326 Mon Sep 17 00:00:00 2001 From: Daniel Strebel Date: Thu, 19 Dec 2024 11:06:00 +0000 Subject: [PATCH] feat: base pipeline builder off alpine --- tools/pipeline-runner/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/pipeline-runner/Dockerfile b/tools/pipeline-runner/Dockerfile index 27c1ed8d..80b33def 100644 --- a/tools/pipeline-runner/Dockerfile +++ b/tools/pipeline-runner/Dockerfile @@ -12,10 +12,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM google/cloud-sdk:alpine +FROM alpine:latest + +COPY --from=google/cloud-sdk:alpine /google-cloud-sdk /google-cloud-sdk +ENV PATH="/google-cloud-sdk/bin:${PATH}" # Install additional tools RUN apk add --no-cache \ + bash \ jq \ libxml2-utils \ maven \