Skip to content

Commit e7c4418

Browse files
Simon Emmsmrsimonemms
Simon Emms
authored andcommitted
pdate to use release 2022.01
1 parent 8e6cec9 commit e7c4418

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

Dockerfile

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
ARG GITPOD_VERSION="main.1988"
2-
3-
FROM eu.gcr.io/gitpod-core-dev/build/installer:$GITPOD_VERSION as installer
4-
51
FROM alpine:edge
62

3+
ARG GITPOD_VERSION="2022.01"
4+
75
RUN apk add --no-cache \
86
bash \
97
curl \
@@ -31,7 +29,8 @@ RUN curl -fsSL "https://storage.googleapis.com/kubernetes-release/release/$(curl
3129
RUN curl -fsSL https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v0.5.3/aws-iam-authenticator_0.5.3_linux_amd64 -o /usr/local/bin/aws-iam-authenticator \
3230
&& chmod +x /usr/local/bin/aws-iam-authenticator
3331

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

3635
WORKDIR /gitpod
3736

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ else
1818
endif
1919

2020
build: ## Build docker image containing the required tools for the installation
21-
@docker build --squash --quiet . -t ${IMG}
21+
@docker build --quiet . -t ${IMG}
2222
@mkdir -p ${PWD}/logs
2323

2424
DOCKER_RUN_CMD = docker run -it \
25-
--pull always \
2625
--env-file ${PWD}/.env \
2726
--env NODE_ENV=production \
2827
--volume ${PWD}/.kubeconfig:/gitpod/.kubeconfig \

0 commit comments

Comments
 (0)