Files
ava/Dockerfile
2022-12-27 13:54:44 +01:00

17 lines
191 B
Docker

FROM node:latest
WORKDIR /app
COPY package.json ./
RUN npm install
RUN apt update && apt install ffmpeg -y
COPY . .
RUN npm run generateprisma
RUN npm run build
CMD node dist/index.js