File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
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 mcr.microsoft.com/azure-cli:2.9.1
6
2
7
3
RUN apk add --no-cache \
8
4
gettext \
9
5
jq
10
6
7
+ ARG GITPOD_VERSION="2022.01"
11
8
ARG HELM_VERSION=v3.6.3
12
9
13
10
RUN curl -fsSL "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" -o /usr/local/bin/kubectl \
@@ -21,7 +18,8 @@ RUN mkdir -p /tmp/helm/ \
21
18
RUN curl -fsSL https://github.com/mikefarah/yq/releases/download/v4.12.2/yq_linux_amd64 -o /usr/local/bin/yq \
22
19
&& chmod +x /usr/local/bin/yq
23
20
24
- COPY --from=installer /app/installer /usr/local/bin/gitpod-installer
21
+ RUN curl -fsSL https://github.com/gitpod-io/gitpod/releases/download/${GITPOD_VERSION}/gitpod-installer-linux-amd64 -o /usr/local/bin/gitpod-installer \
22
+ && chmod +x /usr/local/bin/gitpod-installer
25
23
26
24
WORKDIR /gitpod
27
25
You can’t perform that action at this time.
0 commit comments