Files
vinci/Dockerfile
2022-11-27 17:04:34 +01:00

17 lines
187 B
Docker

FROM node:lts-alpine
WORKDIR /app
COPY package.json ./
RUN npm i
EXPOSE 7272
RUN apk update && apk add bash ffmpeg ttf-freefont
COPY . .
RUN npm run build
CMD node ./dist/index.js