1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/audiowaveform/Dockerfile

19 lines
367 B
Docker
Raw Normal View History

2015-08-15 01:22:23 +00:00
#
# Dockerfile for audiowaveform
#
2021-07-29 10:23:32 +00:00
FROM ubuntu:20.04
MAINTAINER EasyPi Software Foundation
2015-08-15 01:22:23 +00:00
2021-07-29 10:23:32 +00: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 01:22:23 +00:00
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["audiowaveform"]
CMD ["--help"]