Merge pull request #95 from pcgeek86/patch-1

Adding Dockerfile 🐳
This commit is contained in:
Alexander Lukyanchikov 2021-01-19 12:10:49 -08:00 committed by GitHub
commit fc717d627e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -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"]