-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
2709fb1
commit 26f694e
Showing
4 changed files
with
112 additions
and
58 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# vim:set noet sts=0 sw=8 ts=8 ft=dockerfile: | ||
# test building | ||
FROM golang:1.21-bookworm | ||
RUN apt-get update -y | ||
RUN apt-get install -y clang | ||
RUN apt-get install -y gcc-mingw-w64-x86-64 gcc-aarch64-linux-gnu | ||
# libc6-dev-i386 \ | ||
# linux-headers-generic \ | ||
# linux-libc-dev:amd64 \ | ||
# linux-libc-dev-arm64-cross | ||
# RUN apt-get install -y gcc-multilib | ||
# RUN apt-get install -y gcc-aarch64-linux-gnu | ||
# RUN apt-get install -y gcc-mingw-w64-x86-64 gcc-multilib | ||
COPY . /app | ||
WORKDIR /app | ||
# RUN go mod tidy | ||
RUN bash scripts/build.sh -a | ||
|
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