Files
ava/Dockerfile
2023-04-23 13:36:43 +02:00

17 lines
207 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