File size: 280 Bytes
44cdc52 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM node:latest
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y lsb-release && apt-get install -y && apt-get install ffmpeg -y
RUN rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package.json .
RUN npm i
COPY . .
EXPOSE 7860
CMD ["node", "api/index.js"] |