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
