Files
discordbot-ts-template/Dockerfile

11 lines
121 B
Docker

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