File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1- ARG GITPOD_VERSION="main.1988"
2-
3- FROM eu.gcr.io/gitpod-core-dev/build/installer:$GITPOD_VERSION as installer
4-
51FROM alpine:edge
62
3+ ARG GITPOD_VERSION="2022.01"
4+
75RUN apk add --no-cache \
86 bash \
97 curl \
@@ -31,7 +29,8 @@ RUN curl -fsSL "https://storage.googleapis.com/kubernetes-release/release/$(curl
3129RUN 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
3635WORKDIR /gitpod
3736
Original file line number Diff line number Diff line change 1818endif
1919
2020build : # # 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
2424DOCKER_RUN_CMD = docker run -it \
25- --pull always \
2625 --env-file ${PWD}/.env \
2726 --env NODE_ENV=production \
2827 --volume ${PWD}/.kubeconfig:/gitpod/.kubeconfig \
You can’t perform that action at this time.
0 commit comments