1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-10 11:10:29 +02:00
dockerfiles/audiowaveform/Dockerfile

19 lines
367 B
Docker
Raw Normal View History

2015-08-15 03:22:23 +02:00
#
# Dockerfile for audiowaveform
#
2021-07-29 12:23:32 +02:00
FROM ubuntu:20.04
MAINTAINER EasyPi Software Foundation
2015-08-15 03:22:23 +02:00
2021-07-29 12:23:32 +02:00
RUN set -xe \
&& apt update \
&& apt install -y software-properties-common \
&& add-apt-repository ppa:chris-needham/ppa \
&& apt update \
&& apt install -y audiowaveform \
2015-08-15 03:22:23 +02:00
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["audiowaveform"]
CMD ["--help"]