File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ RUN sudo apt-get update && \
9
9
sudo apt-get upgrade curl && \
10
10
cargo install cargo-binutils rustfilt && \
11
11
rustup component add llvm-tools-preview && \
12
- pip3 install psycopg2 && sudo gem install bundler && \
12
+ pip3 install psycopg2 && sudo gem install bundler && \
13
13
wget -O /tmp/toxiproxy-2.4.0.deb https://github.com/Shopify/toxiproxy/releases/download/v2.4.0/toxiproxy_2.4.0_linux_$(dpkg --print-architecture).deb && \
14
14
sudo dpkg -i /tmp/toxiproxy-2.4.0.deb
15
+ RUN wget -O /tmp/go1.21.3.linux-$(dpkg --print-architecture).tar.gz https://go.dev/dl/go1.21.3.linux-$(dpkg --print-architecture).tar.gz && \
16
+ sudo tar -C /usr/local -xzf /tmp/go1.21.3.linux-$(dpkg --print-architecture).tar.gz && \
17
+ rm /tmp/go1.21.3.linux-$(dpkg --print-architecture).tar.gz
Original file line number Diff line number Diff line change @@ -8,3 +8,6 @@ RUN rustup component add llvm-tools-preview
8
8
RUN sudo gem install bundler
9
9
RUN wget -O toxiproxy-2.4.0.deb https://github.com/Shopify/toxiproxy/releases/download/v2.4.0/toxiproxy_2.4.0_linux_$(dpkg --print-architecture).deb && \
10
10
sudo dpkg -i toxiproxy-2.4.0.deb
11
+ RUN wget -O go1.21.3.linux-$(dpkg --print-architecture).tar.gz https://go.dev/dl/go1.21.3.linux-$(dpkg --print-architecture).tar.gz && \
12
+ sudo tar -C /usr/local -xzf go1.21.3.linux-$(dpkg --print-architecture).tar.gz && \
13
+ rm go1.21.3.linux-$(dpkg --print-architecture).tar.gz
You can’t perform that action at this time.
0 commit comments