-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[---] Build docker executable with musl libc. #751
base: master
Are you sure you want to change the base?
Changes from 1 commit
1c26588
30576a9
a199ce7
9f07c74
b831ff7
17cc190
35af2ab
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM busybox:glibc | ||
FROM busybox | ||
|
||
MAINTAINER "André Stein <[email protected]>" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
FROM alpine:3.10 | ||
|
||
ENV DUB_BRANCH "v1.20.1" | ||
ENV RDMD_BRANCH "v2.091.0" | ||
|
||
RUN apk add --no-cache llvm5-libs g++ binutils-gold clang \ | ||
llvm8-libs llvm8-static llvm8-dev \ | ||
cmake ninja zlib-dev curl-dev curl-static openssl-dev git make | ||
|
||
# build ldc2 ######################################################## | ||
|
||
ADD https://github.com/ldc-developers/ldc/releases/download/v1.13.0/ldc2-1.13.0-alpine-linux-x86_64.tar.xz /ldc-bin.tar.xz | ||
RUN tar xf ldc-bin.tar.xz | ||
|
||
# TODO: use environment variable from travis for LDC version | ||
ADD https://github.com/ldc-developers/ldc/releases/download/v1.21.0/ldc-1.21.0-src.tar.gz /ldc-src.tar.xz | ||
RUN tar xf ldc-src.tar.xz | ||
|
||
RUN mkdir /ldc-1.21.0-src/build \ | ||
&& cd /ldc-1.21.0-src/build \ | ||
&& cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release \ | ||
-DD_COMPILER=/ldc2-1.13.0-alpine-linux-x86_64/bin/ldmd2 \ | ||
&& ninja -j2 \ | ||
&& ninja install | ||
|
||
# build dub ########################################################## | ||
|
||
RUN git clone --single-branch --branch ${DUB_BRANCH} https://github.com/dlang/dub \ | ||
&& cd dub \ | ||
&& ldmd2 -run build.d \ | ||
&& cp bin/dub /usr/local/bin/ | ||
|
||
# build rdmd ######################################################### | ||
|
||
RUN git clone --single-branch --branch ${RDMD_BRANCH} https://github.com/dlang/tools \ | ||
&& cd tools \ | ||
&& sed -i "s|^DMD = .*$|DMD = ldmd2|" posix.mak \ | ||
&& sed -i "s|^INSTALL_DIR = .*$|INSTALL_DIR = $PWD|" posix.mak \ | ||
&& make -f posix.mak install \ | ||
&& cp bin/rdmd /usr/local/bin/ | ||
|
||
|
||
COPY docker.build.sh /docker.build.sh | ||
RUN chmod +x /docker.build.sh | ||
|
||
ENTRYPOINT [ "/docker.build.sh" ] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
set -e -u | ||
|
||
cd /core/ | ||
dub build -c static --compiler=ldc2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,9 @@ configuration "static" { | |
targetType "executable" | ||
versions "VibeDefaultMain" | ||
lflags "-lz" "-lssl" "-lcrypto" "-ldl" platform="posix" | ||
dflags "-static" platform="posix" | ||
|
||
// gcc on alpine has issues with the ld.gold linker, use bfd instead | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would be better to pass this as DFLAGS from alpine as ld.gold does drastically speed-up the build time locally. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unfortunately ld.gold has some issues on musl, so either BFD or LLD has to be used. |
||
dflags "-linker=bfd" "-static" platform="posix" | ||
} | ||
configuration "library" { | ||
versions "VibeCustomMain" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the interactive run ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copied from the docker run below.