File tree 2 files changed +5
-7
lines changed
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
-
5
1
FROM alpine:edge
6
2
3
+ ARG GITPOD_VERSION="2022.01"
4
+
7
5
RUN apk add --no-cache \
8
6
bash \
9
7
curl \
@@ -31,7 +29,8 @@ RUN curl -fsSL "https://storage.googleapis.com/kubernetes-release/release/$(curl
31
29
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 \
32
30
&& chmod +x /usr/local/bin/aws-iam-authenticator
33
31
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
35
34
36
35
WORKDIR /gitpod
37
36
Original file line number Diff line number Diff line change 18
18
endif
19
19
20
20
build : # # Build docker image containing the required tools for the installation
21
- @docker build --squash -- quiet . -t ${IMG}
21
+ @docker build --quiet . -t ${IMG}
22
22
@mkdir -p ${PWD} /logs
23
23
24
24
DOCKER_RUN_CMD = docker run -it \
25
- --pull always \
26
25
--env-file ${PWD}/.env \
27
26
--env NODE_ENV=production \
28
27
--volume ${PWD}/.kubeconfig:/gitpod/.kubeconfig \
You can’t perform that action at this time.
0 commit comments