Discord-Bot/Dockerfile
Unknown 95af1fc482 Revert "sdf"
This reverts commit 699139cda1.
2024-04-04 17:43:39 -07:00

6 lines
109 B
Docker

FROM node:18-buster
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "start"]