Update nimble in the builder

Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
baalajimaestro 2023-04-21 10:47:17 +05:30
parent e64874d8e6
commit 13e1931345
Signed by: baalajimaestro
GPG key ID: F93C394FE9BBAFD5

View file

@ -13,23 +13,25 @@ RUN apk update && apk add git \
COPY . /app
WORKDIR /app
RUN nimble install nimble --accept
# Build with necessary params to enable statically linking openssl, glibc and sqlite3
RUN nimble build --passL:-L/usr/lib \
-d:ssl \
-p:. \
--dynlibOverride:ssl \
--dynlibOverride:crypto \
--dynlibOverride:sqlite3 \
--passl:-lssl \
--passl:-lsqlite3 \
--passl:-lcrypto \
--passL:-static \
--passL:"-flto" \
-d:release \
--opt:speed \
--mm:orc \
--deepcopy=on \
--accept
RUN /root/.nimble/bin/nimble build --passL:-L/usr/lib \
-d:ssl \
-p:. \
--dynlibOverride:ssl \
--dynlibOverride:crypto \
--dynlibOverride:sqlite3 \
--passl:-lssl \
--passl:-lsqlite3 \
--passl:-lcrypto \
--passL:-static \
--passL:"-flto" \
-d:release \
--opt:speed \
--mm:orc \
--deepcopy=on \
--accept
RUN strip -s /app/nim_censor_bot && \
strip -R .comment -R .note -R .note.ABI-tag /app/nim_censor_bot