educ-bot/Dockerfile
2020-04-06 17:17:12 +02:00

12 lines
167 B
Docker

from node:13
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY index.js defaultReactions.json avatar.png ./
EXPOSE 8080
CMD [ "node", "./index.js" ]