2022-05-15 14:55:23 +01:00
|
|
|
FROM node:16.15.0
|
|
|
|
|
|
|
|
# Create the directory!
|
2022-05-24 00:38:47 +01:00
|
|
|
RUN mkdir -p /usr/hullcss
|
|
|
|
WORKDIR /usr/hullcss
|
2022-05-15 14:55:23 +01:00
|
|
|
|
|
|
|
# Copy and Install our bot
|
2022-05-24 00:38:47 +01:00
|
|
|
COPY package.json /usr/hullcss
|
2022-05-15 14:55:23 +01:00
|
|
|
RUN npm install
|
|
|
|
|
|
|
|
# Our precious bot
|
2022-05-24 00:38:47 +01:00
|
|
|
COPY . /usr/hullcss
|
2022-05-15 14:55:23 +01:00
|
|
|
|
|
|
|
# Start me!
|
2022-06-04 10:01:33 +01:00
|
|
|
VOLUME ["latest"]
|
|
|
|
CMD ["node", "index.js"]
|