-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM ghcr.io/cross-rs/aarch64-unknown-linux-gnu:latest | ||
FROM ghcr.io/cross-rs/aarch64-unknown-linux-gnu:0.2.5 | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y unzip | ||
RUN dpkg --add-architecture arm64 && apt-get update && \ | ||
apt-get install -y unzip libssl-dev:arm64 | ||
|
||
RUN curl -Lo protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v21.12/protoc-21.12-linux-x86_64.zip" | ||
RUN curl -Lo protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v22.2/protoc-22.2-linux-x86_64.zip" | ||
RUN unzip -q protoc.zip -d /usr/local | ||
RUN chmod a+x /usr/local/bin/protoc | ||
ENV PROTOC=/usr/local/bin/protoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM ghcr.io/cross-rs/armv7-unknown-linux-gnueabihf:latest | ||
FROM ghcr.io/cross-rs/armv7-unknown-linux-gnueabihf:0.2.5 | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y unzip | ||
RUN dpkg --add-architecture armhf && apt-get update && \ | ||
apt-get install -y unzip openssl libssl-dev:armhf | ||
|
||
RUN curl -Lo protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v21.12/protoc-21.12-linux-x86_64.zip" | ||
RUN curl -Lo protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v22.2/protoc-22.2-linux-x86_64.zip" | ||
RUN unzip -q protoc.zip -d /usr/local | ||
RUN chmod a+x /usr/local/bin/protoc | ||
ENV PROTOC=/usr/local/bin/protoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM ghcr.io/cross-rs/x86_64-unknown-linux-gnu:latest | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y unzip | ||
apt-get install -y unzip libssl-dev | ||
|
||
RUN curl -Lo protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v21.12/protoc-21.12-linux-x86_64.zip" | ||
RUN curl -Lo protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v22.2/protoc-22.2-linux-x86_64.zip" | ||
RUN unzip -q protoc.zip -d /usr/local | ||
RUN chmod a+x /usr/local/bin/protoc | ||
ENV PROTOC=/usr/local/bin/protoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters