mirror of
https://github.com/jcreek/denBot.git
synced 2026-07-12 18:33:45 +00:00
feat(*): Add dockerfile
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user