StableBOT / Dockerfile
RamaZyx's picture
Update Dockerfile
64f1351 verified
raw
history blame contribute delete
260 Bytes
FROM node:lts-buster
RUN apt-get update && \
apt-get install -y \
ffmpeg \
yarn \
imagemagick \
webp && \
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*
COPY package.json .
RUN yarn install
COPY . .
EXPOSE 5000
CMD ["node", "index.js"]