mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
4389c71619
This works on my kernel. If your kernel is older/newer, you may need a different alpine base image that matches your kernel more closely.
17 lines
276 B
Docker
17 lines
276 B
Docker
FROM alpine:3.14.0
|
|
|
|
RUN ["apk", "add", "--no-cache", \
|
|
"bash", \
|
|
"gcc", \
|
|
"linux-headers", \
|
|
"msgpack-c-dev", \
|
|
"musl-dev", \
|
|
"libsodium-dev", \
|
|
"libvpx-dev", \
|
|
"opus-dev", \
|
|
"perf"]
|
|
|
|
WORKDIR /work
|
|
COPY other/docker/perf/entrypoint.sh /
|
|
ENTRYPOINT ["/entrypoint.sh"]
|