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

Commit

Permalink
Update to use release 2022.01
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Emms authored and mrsimonemms committed Jan 28, 2022
1 parent 720cc53 commit 964cedf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
ARG GITPOD_VERSION="main.1887"

FROM eu.gcr.io/gitpod-core-dev/build/installer:$GITPOD_VERSION as installer

FROM alpine:3.14

RUN apk add --no-cache \
Expand All @@ -13,6 +9,7 @@ RUN apk add --no-cache \
gettext \
openssl

ARG GITPOD_VERSION="2022.01"
ARG CLOUD_SDK_VERSION=351.0.0
ARG HELM_VERSION=v3.6.3

Expand All @@ -36,7 +33,8 @@ RUN gcloud components install alpha
RUN curl -fsSL https://github.com/mikefarah/yq/releases/download/v4.12.2/yq_linux_amd64 -o /usr/local/bin/yq \
&& chmod +x /usr/local/bin/yq

COPY --from=installer /app/installer /usr/local/bin/gitpod-installer
RUN curl -fsSL https://github.com/gitpod-io/gitpod/releases/download/${GITPOD_VERSION}/gitpod-installer-linux-amd64 -o /usr/local/bin/gitpod-installer \
&& chmod +x /usr/local/bin/gitpod-installer

WORKDIR /gitpod

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SHELL=/bin/bash -o pipefail -o errexit
IMG=ghcr.io/gitpod-io/gitpod-gke-guide:latest

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

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

0 comments on commit 964cedf

Please sign in to comment.