Add unzip installation to Dockerfile for build dependencies
This commit is contained in:
parent
f3b3e80ccf
commit
e6acbacc6b
1 changed files with 2 additions and 1 deletions
|
|
@ -26,7 +26,8 @@ RUN apt-get update && \
|
|||
apt-get install -y g++-13-aarch64-linux-gnu && \
|
||||
apt-get install -y wget && \
|
||||
apt-get install -y curl && \
|
||||
apt-get install -y git
|
||||
apt-get install -y git && \
|
||||
apt-get install -y unzip
|
||||
|
||||
RUN wget https://golang.org/dl/go1.21.1.linux-amd64.tar.gz && \
|
||||
tar -C /usr/local -xzf go1.21.1.linux-amd64.tar.gz && \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue