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
-
5
1
FROM alpine:3.14
6
2
7
3
RUN apk add --no-cache \
@@ -13,6 +9,7 @@ RUN apk add --no-cache \
13
9
gettext \
14
10
openssl
15
11
12
+ ARG GITPOD_VERSION="2022.01"
16
13
ARG CLOUD_SDK_VERSION=351.0.0
17
14
ARG HELM_VERSION=v3.6.3
18
15
@@ -36,7 +33,8 @@ RUN gcloud components install alpha
36
33
RUN curl -fsSL https://github.com/mikefarah/yq/releases/download/v4.12.2/yq_linux_amd64 -o /usr/local/bin/yq \
37
34
&& chmod +x /usr/local/bin/yq
38
35
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
40
38
41
39
WORKDIR /gitpod
42
40
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ SHELL=/bin/bash -o pipefail -o errexit
6
6
IMG =ghcr.io/gitpod-io/gitpod-gke-guide:latest
7
7
8
8
build : # # Build docker image containing the required tools for the installation
9
- @docker build --squash -- quiet . -t ${IMG}
9
+ @docker build --quiet . -t ${IMG}
10
10
11
11
DOCKER_RUN_CMD = docker run -it \
12
12
--volume $$HOME/.config/gcloud:/root/.config/gcloud \
You can’t perform that action at this time.
0 commit comments