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