Files
discordbot-ts-template/Dockerfile
2025-11-28 14:15:42 +01:00

12 lines
147 B
Docker

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