-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dockerfile: use docker to build Linux compat bin
I use NixOS, so this is for release Signed-off-by: Dylan Turner <dylan.turner@tutanota.com>
- Loading branch information
1 parent
9ef0c84
commit 1565366
Showing
2 changed files
with
17 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Set up Debian as a build system | ||
|
||
FROM debian:latest | ||
RUN apt-get update && apt-get install -y \ | ||
build-essential | ||
|
||
# Set up environment to build for Debian | ||
WORKDIR /proj | ||
ENTRYPOINT [ "make -j$(nproc)" ] | ||
|
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