Files
discordbot-ts-template/Dockerfile
2025-11-04 19:02:54 +01:00

11 lines
134 B
Docker

FROM node:latest
WORKDIR /app
COPY . /app
RUN npm i && \
npm run build && \
npm run register
CMD [ "npm", "run", "start" ]