mastodon-bot/Dockerfile

14 lines
243 B
Docker
Raw Normal View History

2019-11-19 15:02:06 +01:00
FROM node:10-buster-slim
2019-03-11 12:15:13 +01:00
2019-11-19 13:58:55 +01:00
WORKDIR /mastodon-bot
2019-03-11 12:15:13 +01:00
2019-11-19 13:58:55 +01:00
ADD mastodon-bot.cljs /mastodon-bot/
ADD mastodon-bot.js /mastodon-bot/
ADD package.json /mastodon-bot/
2019-03-11 12:15:13 +01:00
2019-11-19 13:58:55 +01:00
RUN npm install && npm install -g lumo-cljs
2019-03-11 12:15:13 +01:00
VOLUME /config
2019-11-19 13:58:55 +01:00
ENTRYPOINT ["npm", "start"]