hullcss-discord-bot/dockerfile

12 lines
161 B
Plaintext
Raw Normal View History

2022-05-15 14:55:23 +01:00
FROM node:16.15.0
2022-05-24 00:38:47 +01:00
RUN mkdir -p /usr/hullcss
WORKDIR /usr/hullcss
2022-05-15 14:55:23 +01:00
2022-05-24 00:38:47 +01:00
COPY package.json /usr/hullcss
2022-05-15 14:55:23 +01:00
RUN npm install
2022-05-24 00:38:47 +01:00
COPY . /usr/hullcss
2022-05-15 14:55:23 +01:00
2022-06-26 17:36:47 +01:00
CMD ["node", "index.js"]