Add unzip installation to Dockerfile for build dependencies

This commit is contained in:
Max 2024-11-23 19:01:10 +08:00
parent f3b3e80ccf
commit e6acbacc6b

View file

@ -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 && \