docker/server/Dockerfile
2022-12-12 14:50:41 +01:00

9 lines
215 B
Docker

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