Waad / Dockerfile
Epikcoder
a
44cdc52
raw
history blame contribute delete
280 Bytes
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"]