docker/server/Dockerfile

9 lines
215 B
Docker
Raw Normal View History

2023-02-08 12:33:50 +01:00
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