baalajimaestro
16e6d2f724
Libressl does bring 1mb improvement, but its causing issues Signed-off-by: baalajimaestro <me@baalajimaestro.me>
46 lines
1.4 KiB
Docker
46 lines
1.4 KiB
Docker
FROM nimlang/nim:alpine as builder
|
|
|
|
RUN apk update && apk add git build-base clang llvm llvm-dev lld curl bash openssl openssl-dev openssl-libs-static sqlite-dev sqlite-static
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
# Build with necessary params to enable statically linking openssl, glibc and sqlite3
|
|
RUN nimble build --passL:-L/usr/lib \
|
|
-d:ssl \
|
|
--os:any \
|
|
-d:posix \
|
|
--deepcopy:on \
|
|
-d:useMalloc \
|
|
-d:noSignalHandler \
|
|
--cc:clang \
|
|
-p:. \
|
|
--dynlibOverride:ssl \
|
|
--dynlibOverride:crypto \
|
|
--dynlibOverride:sqlite3 \
|
|
--passl:-lssl \
|
|
--passl:-lsqlite3 \
|
|
--passl:-lcrypto \
|
|
--passL:-static \
|
|
--passL:"-flto=full" \
|
|
--passL:"-fuse-ld=lld" \
|
|
--gc:arc \
|
|
--panics:on \
|
|
-d:danger \
|
|
--opt:speed \
|
|
--accept
|
|
|
|
RUN strip -s /app/nim_censor_bot && \
|
|
strip -R .comment -R .note -R .note.ABI-tag /app/nim_censor_bot
|
|
|
|
# Our binary lives in this image
|
|
FROM gcr.io/distroless/base:latest
|
|
|
|
COPY --from=builder /app/nim_censor_bot /
|
|
|
|
ENV DB_HOST="/data/censordata.db"
|
|
|
|
EXPOSE 8080
|
|
VOLUME /data
|
|
|
|
CMD ["./nim_censor_bot"]
|