mirror of
https://github.com/TokTok/c-toxcore
synced 2026-06-03 23:31:41 +00:00
350c0ba120
CodeQL scanning is complaining about this.
16 lines
256 B
Docker
16 lines
256 B
Docker
FROM alpine:3.14.0
|
|
|
|
RUN ["apk", "add", "--no-cache", \
|
|
"bash", \
|
|
"gcc", \
|
|
"libsodium-dev", \
|
|
"libvpx-dev", \
|
|
"linux-headers", \
|
|
"musl-dev", \
|
|
"opus-dev", \
|
|
"perf"]
|
|
|
|
WORKDIR /work
|
|
COPY other/docker/perf/entrypoint.sh /
|
|
ENTRYPOINT ["/entrypoint.sh"]
|