mirror of
https://github.com/TokTok/c-toxcore
synced 2026-04-03 21:45:52 +00:00
Move core networking types and the Network interface to net, and the standard OS socket implementation to os_network. Update network to use these new abstractions.
25 lines
448 B
Docker
25 lines
448 B
Docker
FROM alpine:3.23.0
|
|
|
|
RUN ["apk", "add", "--no-cache", \
|
|
"bash", \
|
|
"benchmark-dev", \
|
|
"clang", \
|
|
"gmock", \
|
|
"gtest-dev", \
|
|
"libc++-dev", \
|
|
"libc++-static", \
|
|
"libconfig-dev", \
|
|
"libsodium-dev", \
|
|
"libvpx-dev", \
|
|
"linux-headers", \
|
|
"opus-dev", \
|
|
"pkgconfig", \
|
|
"python3"]
|
|
|
|
WORKDIR /work
|
|
COPY . /work/
|
|
|
|
COPY toxcore/BUILD.bazel /work/toxcore/
|
|
COPY other/docker/modules/check /work/other/docker/modules/
|
|
RUN ["other/docker/modules/check"]
|