mirror of
https://github.com/TokTok/c-toxcore
synced 2026-05-11 15:24:52 +00:00
20 lines
575 B
Docker
20 lines
575 B
Docker
FROM toxchat/c-toxcore:sources AS sources
|
|
FROM toxchat/compcert:latest
|
|
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends \
|
|
gdb \
|
|
make \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /work
|
|
COPY --from=sources /src/ /work/
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
RUN git clone --depth=1 --branch=stable https://github.com/jedisct1/libsodium /work/libsodium
|
|
COPY other/docker/compcert/Makefile /work/
|
|
RUN make "-j$(nproc)"
|
|
RUN ./send_message_test 2>&1 | grep 'Correctly failed to send too long message'
|