Files
illegitimate-bot/Dockerfile
Taken a4287c25ef Case fix
Signed-off-by: Taken <taken@mairimashita.org>
2024-09-03 22:09:39 +02:00

13 lines
216 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
ENV NODE_PATH=dist/
RUN corepack enable
RUN yarn build
CMD [ "yarn", "start" ]