Align the deps properly
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
16e6d2f724
commit
3ff60f8c18
1 changed files with 14 additions and 2 deletions
16
Dockerfile
16
Dockerfile
|
@ -1,6 +1,18 @@
|
||||||
FROM nimlang/nim:alpine as builder
|
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
|
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
|
COPY . /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
@ -10,7 +22,7 @@ RUN nimble build --passL:-L/usr/lib \
|
||||||
-d:ssl \
|
-d:ssl \
|
||||||
--os:any \
|
--os:any \
|
||||||
-d:posix \
|
-d:posix \
|
||||||
--deepcopy:on \
|
--deepcopy:on \
|
||||||
-d:useMalloc \
|
-d:useMalloc \
|
||||||
-d:noSignalHandler \
|
-d:noSignalHandler \
|
||||||
--cc:clang \
|
--cc:clang \
|
||||||
|
|
Loading…
Reference in a new issue