This repository was archived by the owner on Sep 6, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1- ARG GITPOD_VERSION="main.1887"
2-
3- FROM eu.gcr.io/gitpod-core-dev/build/installer:$GITPOD_VERSION as installer
4-
51FROM alpine:3.14
62
73RUN apk add --no-cache \
@@ -13,6 +9,7 @@ RUN apk add --no-cache \
139 gettext \
1410 openssl
1511
12+ ARG GITPOD_VERSION="2022.01"
1613ARG CLOUD_SDK_VERSION=351.0.0
1714ARG HELM_VERSION=v3.6.3
1815
@@ -36,7 +33,8 @@ RUN gcloud components install alpha
3633RUN curl -fsSL https://github.com/mikefarah/yq/releases/download/v4.12.2/yq_linux_amd64 -o /usr/local/bin/yq \
3734 && chmod +x /usr/local/bin/yq
3835
39- COPY --from=installer /app/installer /usr/local/bin/gitpod-installer
36+ RUN curl -fsSL https://github.com/gitpod-io/gitpod/releases/download/${GITPOD_VERSION}/gitpod-installer-linux-amd64 -o /usr/local/bin/gitpod-installer \
37+ && chmod +x /usr/local/bin/gitpod-installer
4038
4139WORKDIR /gitpod
4240
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ SHELL=/bin/bash -o pipefail -o errexit
66IMG =ghcr.io/gitpod-io/gitpod-gke-guide:latest
77
88build : # # Build docker image containing the required tools for the installation
9- @docker build --squash -- quiet . -t ${IMG}
9+ @docker build --quiet . -t ${IMG}
1010
1111DOCKER_RUN_CMD = docker run -it \
1212 --volume $$HOME/.config/gcloud:/root/.config/gcloud \
You can’t perform that action at this time.
0 commit comments