الملفات
codepill-sfu/Dockerfile
2022-08-30 23:13:00 +02:00

14 أسطر
214 B
Docker

FROM node:16-slim
WORKDIR /src
RUN \
DEBIAN_FRONTEND=noninteractive apt update && \
apt install -y --no-install-recommends build-essential python3-pip
COPY package.json .
RUN npm install
CMD npm start