@@ -21,7 +21,7 @@ RUN curl -fsSL https://dl.google.com/cloudsql/cloud_sql_proxy.linux.amd64 > $CLO
21
21
22
22
# ## Helm3 ###
23
23
RUN mkdir -p /tmp/helm/ \
24
- && curl -fsSL https://get.helm.sh/helm-v3.5.2 -linux-amd64.tar.gz | tar -xzvC /tmp/helm/ --strip-components=1 \
24
+ && curl -fsSL https://get.helm.sh/helm-v3.6.0 -linux-amd64.tar.gz | tar -xzvC /tmp/helm/ --strip-components=1 \
25
25
&& cp /tmp/helm/helm /usr/local/bin/helm \
26
26
&& cp /tmp/helm/helm /usr/local/bin/helm3 \
27
27
&& rm -rf /tmp/helm/ \
@@ -123,20 +123,13 @@ ENV GOFLAGS="-mod=readonly"
123
123
# # Register leeway autocompletion in bashrc
124
124
RUN bash -c "echo . \<\( leeway bash-completion\) >> ~/.bashrc"
125
125
126
- # Install pulumi
127
- RUN curl -fsSL https://get.pulumi.com/releases/sdk/pulumi-v1.9.1-linux-x64.tar.gz | tar xvzC . \
128
- && mkdir -p /home/gitpod/.pulumi/bin \
129
- && mv pulumi/* /home/gitpod/.pulumi/bin \
130
- && echo "export PATH=\$ PATH:/home/gitpod/.pulumi/bin" >> /home/gitpod/.bashrc \
131
- && rm -Rf ./pulumi
132
-
133
126
# ## Google Cloud ###
134
127
# not installed via repository as then 'docker-credential-gcr' is not available
135
128
ARG GCS_DIR=/opt/google-cloud-sdk
136
129
ENV PATH=$GCS_DIR/bin:$PATH
137
130
RUN sudo chown gitpod: /opt \
138
131
&& mkdir $GCS_DIR \
139
- && curl -fsSL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-245 .0.0-linux-x86_64.tar.gz \
132
+ && curl -fsSL https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-344 .0.0-linux-x86_64.tar.gz \
140
133
| tar -xzvC /opt \
141
134
&& /opt/google-cloud-sdk/install.sh --quiet --usage-reporting=false --bash-completion=true \
142
135
--additional-components docker-credential-gcr alpha beta \
@@ -191,3 +184,8 @@ RUN mkdir -p ~/.terraform \
191
184
RUN sudo install-packages graphviz
192
185
193
186
ENV PATH=$PATH:$HOME/.aws-iam:$HOME/.terraform
187
+
188
+ # Install codecov uploader
189
+ # https://about.codecov.io/blog/introducing-codecovs-new-uploader
190
+ RUN sudo curl -fsSL https://uploader.codecov.io/latest/codecov-linux -o /usr/local/bin/codecov \
191
+ && sudo chmod +x /usr/local/bin/codecov
0 commit comments