Files
denBot/Dockerfile
T
2020-10-26 00:04:54 +00:00

16 lines
270 B
Docker

FROM node:latest
# Create the directory
RUN mkdir -p /usr/src/bot
WORKDIR /usr/src/bot
# Copy the package.json and install the packages
COPY package.json /usr/src/bot
RUN npm install
# Copy the bot itself
COPY . /usr/src/bot
# Start the bot
CMD ["node", "index.js"]