Update dockerfile

imgbot
Kieran 2022-06-26 17:36:47 +01:00 committed by GitHub
parent d58307e860
commit 2be15aa0f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions

View File

@ -1,16 +1,11 @@
FROM node:16.15.0
# Create the directory!
RUN mkdir -p /usr/hullcss
WORKDIR /usr/hullcss
# Copy and Install our bot
COPY package.json /usr/hullcss
RUN npm install
# Our precious bot
COPY . /usr/hullcss
# Start me!
VOLUME ["latest"]
CMD ["node", "index.js"]