Cloner / Dockerfile
GDS
Update
64c1502 unverified
raw
history blame
248 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 --production
COPY . .
EXPOSE 5000
CMD ["npm", "start"]