File: Dockerfile

package info (click to toggle)
rsgain 3.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 436 kB
  • sloc: cpp: 3,703; makefile: 5
file content (12 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
FROM debian:bookworm

ARG VERSION=3.6 \
    ARCH=amd64

RUN apt-get update && \
    apt-get install -y --no-install-recommends curl ca-certificates openssl && \
    curl -sSL -o /tmp/rsgain.deb "https://github.com/complexlogic/rsgain/releases/download/v${VERSION}/rsgain_${VERSION}_${ARCH}.deb" && \
    apt install -y /tmp/rsgain.deb && \
    rm -rf /var/lib/apt/lists/* /tmp/rsgain.deb

ENTRYPOINT ["/usr/bin/rsgain"]