SUBZERO-MD / Dockerfile
mrfrank-ofc's picture
Upload 8 files
b74b1a0 verified
raw
history blame
306 Bytes
FROM node:lts-buster
RUN apt-get update && \
apt-get install -y \
ffmpeg \
imagemagick \
webp && \
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*
COPY package.json .
RUN npm install && npm install -g qrcode-terminal pm2
COPY . .
EXPOSE 3000
CMD ["pm2-runtime", "start", "index.js"]