1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-03-12 00:08:05 +01:00

10 lines
215 B
Docker
Raw Normal View History

FROM debian:sid-slim
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \
audacity \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "audacity" ]