This commit is contained in:
Artem Anufrij
2023-02-08 12:33:50 +01:00
commit 5f63b7143b
8 changed files with 154 additions and 0 deletions

8
server/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:lts
RUN echo "Build WebPlay Server"
RUN apt update
RUN apt install -y --no-install-recommends ffmpeg lame
RUN git clone https://gitea.com/WebPlay/server.git && cd server && npm install
WORKDIR /server