Merge pull request #786 from trheyi/main

Add unzip installation to Dockerfile for build dependencies
This commit is contained in:
Max 2024-11-23 19:01:54 +08:00 committed by GitHub
commit 02f4cb4ace
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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