Skip to content
This repository was archived by the owner on Sep 6, 2022. It is now read-only.

Commit 964cedf

Browse files
Simon Emmsmrsimonemms
authored andcommitted
Update to use release 2022.01
1 parent 720cc53 commit 964cedf

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
ARG GITPOD_VERSION="main.1887"
2-
3-
FROM eu.gcr.io/gitpod-core-dev/build/installer:$GITPOD_VERSION as installer
4-
51
FROM alpine:3.14
62

73
RUN apk add --no-cache \
@@ -13,6 +9,7 @@ RUN apk add --no-cache \
139
gettext \
1410
openssl
1511

12+
ARG GITPOD_VERSION="2022.01"
1613
ARG CLOUD_SDK_VERSION=351.0.0
1714
ARG HELM_VERSION=v3.6.3
1815

@@ -36,7 +33,8 @@ RUN gcloud components install alpha
3633
RUN 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

4139
WORKDIR /gitpod
4240

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SHELL=/bin/bash -o pipefail -o errexit
66
IMG=ghcr.io/gitpod-io/gitpod-gke-guide:latest
77

88
build: ## Build docker image containing the required tools for the installation
9-
@docker build --squash --quiet . -t ${IMG}
9+
@docker build --quiet . -t ${IMG}
1010

1111
DOCKER_RUN_CMD = docker run -it \
1212
--volume $$HOME/.config/gcloud:/root/.config/gcloud \

0 commit comments

Comments
 (0)