diff --git a/audacity/Dockerfile b/audacity/Dockerfile new file mode 100644 index 0000000..82e530a --- /dev/null +++ b/audacity/Dockerfile @@ -0,0 +1,9 @@ +FROM debian:sid +MAINTAINER Jessica Frazelle + +RUN apt-get update && apt-get install -y \ + audacity \ + --no-install-recommends \ + && rm -rf /var/lib/apt/lists/* + +ENTRYPOINT [ "audacity" ]