Files
illegitimate-bot/Dockerfile
2024-09-21 22:49:42 +02:00

13 lines
226 B
Docker

FROM node-cache AS cache
FROM node:21.7.3-alpine3.18
COPY --from=cache /cache/node_modules /app/node_modules
COPY . /app
WORKDIR /app
RUN apk add --no-cache ffmpeg
RUN corepack enable
RUN yarn build
CMD [ "yarn", "start" ]