File: Dockerfile

package info (click to toggle)
alsaplayer 0.99.82-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,892 kB
  • sloc: ansic: 40,741; cpp: 14,400; makefile: 983; sh: 796; lex: 751; asm: 45; python: 29; sed: 16
file content (10 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
FROM ubuntu:latest AS builder
RUN apt-get update && apt-get -y install build-essential intltool libtool m4 automake
RUN apt-get -y install libjack-dev
RUN apt-get -y install libglib2.0-dev
RUN apt-get -y install libgtk2.0-dev
WORKDIR /src/alsaplayer
COPY . .
RUN ./autogen.sh
RUN ./configure
RUN make install