File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM codercom/code-server:4.12 .0-bullseye
1
+ FROM codercom/code-server:4.15 .0-bullseye
2
2
3
3
USER root
4
4
@@ -9,7 +9,7 @@ RUN apt-get update \
9
9
&& rm -rf /var/lib/apt/lists/*
10
10
11
11
# go
12
- RUN curl -Lo /tmp/go.tar.gz https://dl.google.com/go/go1.20.3 .linux-amd64.tar.gz \
12
+ RUN curl -Lo /tmp/go.tar.gz https://dl.google.com/go/go1.20.6 .linux-amd64.tar.gz \
13
13
&& tar -C /usr/local -xzf /tmp/go.tar.gz \
14
14
&& rm /tmp/go.tar.gz
15
15
ENV PATH=$PATH:/usr/local/go/bin
Original file line number Diff line number Diff line change 3
3
if [ ! -f " /usr/local/bin/aws" ]
4
4
then
5
5
echo " aws is not installed. Installing now... (if prompted, enter password for sudo)"
6
- curl -L " https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.11.16 .zip" -o " /tmp/aws.zip"
6
+ curl -L " https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.13.3 .zip" -o " /tmp/aws.zip"
7
7
pushd /tmp
8
8
unzip aws.zip
9
9
sudo ./aws/install
Original file line number Diff line number Diff line change 3
3
if [ ! -f " /usr/local/bin/docker" ]
4
4
then
5
5
echo " docker is not installed. Installing now... (if prompted, enter password for sudo)"
6
- curl -Lo /tmp/docker.tar.gz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2 .tgz
6
+ curl -Lo /tmp/docker.tar.gz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.21 .tgz
7
7
pushd /tmp
8
8
tar -xzf /tmp/docker.tar.gz
9
9
sudo mv /tmp/docker/docker /usr/local/bin/docker
Original file line number Diff line number Diff line change 5
5
if [ ! -f " /usr/local/bin/terraform" ]
6
6
then
7
7
echo " terraform is not installed. Installing now... (if prompted, enter password for sudo)"
8
- curl -L " https://releases.hashicorp.com/terraform/1.4.6 /terraform_1.4.6_linux_amd64 .zip" -o " /tmp/terraform.zip"
8
+ curl -L " https://releases.hashicorp.com/terraform/1.5.3 /terraform_1.5.3_linux_amd64 .zip" -o " /tmp/terraform.zip"
9
9
pushd /tmp
10
10
unzip terraform.zip
11
11
sudo mv /tmp/terraform /usr/local/bin/terraform
You can’t perform that action at this time.
0 commit comments