Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f2b7364

Browse files
committed
Update components & code-server
code-server to 4.15.0 Go toolchain to 1.20.6 aws-cli to 2.13.3 docker to 20.10.21 terraform to 1.5.3
1 parent f06dafc commit f2b7364

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM codercom/code-server:4.12.0-bullseye
1+
FROM codercom/code-server:4.15.0-bullseye
22

33
USER root
44

@@ -9,7 +9,7 @@ RUN apt-get update \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
# 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 \
1313
&& tar -C /usr/local -xzf /tmp/go.tar.gz \
1414
&& rm /tmp/go.tar.gz
1515
ENV PATH=$PATH:/usr/local/go/bin

install-scripts/aws

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
if [ ! -f "/usr/local/bin/aws" ]
44
then
55
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"
77
pushd /tmp
88
unzip aws.zip
99
sudo ./aws/install

install-scripts/docker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
if [ ! -f "/usr/local/bin/docker" ]
44
then
55
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
77
pushd /tmp
88
tar -xzf /tmp/docker.tar.gz
99
sudo mv /tmp/docker/docker /usr/local/bin/docker

install-scripts/terraform

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
if [ ! -f "/usr/local/bin/terraform" ]
66
then
77
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"
99
pushd /tmp
1010
unzip terraform.zip
1111
sudo mv /tmp/terraform /usr/local/bin/terraform

0 commit comments

Comments
 (0)