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
|
||||
|
||||
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
|
||||
WORKDIR /app
|
||||
|
@ -10,7 +22,7 @@ RUN nimble build --passL:-L/usr/lib \
|
|||
-d:ssl \
|
||||
--os:any \
|
||||
-d:posix \
|
||||
--deepcopy:on \
|
||||
--deepcopy:on \
|
||||
-d:useMalloc \
|
||||
-d:noSignalHandler \
|
||||
--cc:clang \
|
||||
|
|
Loading…
Reference in a new issue