diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..48a745d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:focal + +ENV Sampler=/usr/local/bin/sampler + +RUN apt-get update && apt-get upgrade --yes && apt-get install libasound-dev wget --yes \ + && wget https://github.com/sqshq/sampler/releases/download/v1.1.0/sampler-1.1.0-linux-amd64 -O $Sampler \ + && chmod +x $Sampler + +ENTRYPOINT ["sampler"]