File: Dockerfile

package info (click to toggle)
libtoxcore 0.2.20-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,124 kB
  • sloc: ansic: 75,034; cpp: 4,933; sh: 1,115; python: 651; makefile: 329; perl: 39
file content (15 lines) | stat: -rw-r--r-- 256 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"]