Files
discordbot-ts-template/Dockerfile

7 lines
64 B
Docker

FROM node:22
COPY . .
RUN npm i
CMD [ "npm", "run", "start" ]