server/docker/Dockerfile
Artem Anufrij 22c0eea6ae
All checks were successful
continuous-integration/drone/push Build is passing
drone docker
2023-02-14 01:01:57 +01:00

9 lines
221 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://code.anufrij.de/WebPlay/server.git && cd server && npm install
WORKDIR /server