Build Docker image

This commit is contained in:
2022-03-24 16:10:59 +01:00
parent 7703aa3da5
commit 650b6dfc4d
7 changed files with 1472 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM debian:bullseye-slim
COPY player-server /usr/local/bin/
COPY web /web
CMD ["player-server", "--files-path", "/web"]