mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
ee154da4a9
This library is better in every way.
16 lines
256 B
Docker
16 lines
256 B
Docker
FROM alpine:3.14.0
|
|
|
|
RUN ["apk", "add", "--no-cache", \
|
|
"bash", \
|
|
"gcc", \
|
|
"linux-headers", \
|
|
"musl-dev", \
|
|
"libsodium-dev", \
|
|
"libvpx-dev", \
|
|
"opus-dev", \
|
|
"perf"]
|
|
|
|
WORKDIR /work
|
|
COPY other/docker/perf/entrypoint.sh /
|
|
ENTRYPOINT ["/entrypoint.sh"]
|