ffmpeg-api / Dockerfile
opex792's picture
Upload 5 files
3aa3b77 verified
raw
history blame contribute delete
255 Bytes
FROM node:18-slim
RUN apt-get update && \
apt-get install -y ffmpeg imagemagick && \
rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --only=production
COPY . .
EXPOSE 7860
CMD [ "node", "index.js" ]