File: Dockerfile

package info (click to toggle)
audiowmark 0.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,168 kB
  • sloc: cpp: 10,571; sh: 1,867; makefile: 107; python: 34
file content (18 lines) | stat: -rw-r--r-- 375 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM gcc:latest

RUN apt-get update && apt-get install -y \
  build-essential automake autoconf libtool autoconf-archive gettext \
  libfftw3-dev libsndfile1-dev libgcrypt20-dev libzita-resampler-dev \
  libmpg123-dev

ADD . /audiowmark
WORKDIR /audiowmark

RUN ./autogen.sh
RUN make
RUN make install

VOLUME ["/data"]
WORKDIR /data

ENTRYPOINT ["/usr/local/bin/audiowmark"]