SUBZERO-MD / Dockerfile
mrfrank-ofc's picture
Update Dockerfile
2503f6a verified
raw
history blame
310 Bytes
FROM node:lts-buster
RUN apt-get update && \
apt-get install -y ffmpeg webp git && \
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/mrfrank-ofc/SUBZERO-MD plugins
WORKDIR /plugins
RUN yarn install --production
RUN yarn global add pm2
CMD ["npm", "start"]