We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a6bab commit 7e1aa44Copy full SHA for 7e1aa44
1 file changed
.clusterfuzzlite/Dockerfile
@@ -9,10 +9,18 @@ RUN apt-get update && \
9
&& apt-get clean \
10
&& rm -rf /var/lib/apt/lists/*
11
12
+# Static builds of dependencies
13
14
+# libsodium
15
RUN git clone --depth 1 --branch 1.0.18 https://github.com/jedisct1/libsodium libsodium
16
WORKDIR $SRC/libsodium
17
RUN ./autogen.sh && ./configure --enable-shared=no && make install
18
+WORKDIR $SRC
19
+
20
+# msgpack-c
21
+RUN git clone --depth 1 --branch c_master https://github.com/msgpack/msgpack-c.git msgpack
22
+WORKDIR $SRC/msgpack
23
+RUN cmake -DBUILD_SHARED_LIBS=OFF . && make && make install
24
25
# Copy your project's source code.
26
COPY . $SRC/c-toxcore
0 commit comments