mirror of
https://gitlab.edgegamers.io/discord/ds-bot.git
synced 2025-12-06 06:22:49 -08:00
12 lines
109 B
Docker
12 lines
109 B
Docker
FROM node:latest
|
|
|
|
WORKDIR /dsbot
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
CMD ["node", "index.js"]
|