Skip to content

Instantly share code, notes, and snippets.

@dlion
Created June 25, 2015 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlion/fab546218e9a0213fdca to your computer and use it in GitHub Desktop.
Save dlion/fab546218e9a0213fdca to your computer and use it in GitHub Desktop.
Simple Dockerfile to build an image of ubuntu to run my smagenBot
FROM ubuntu:latest
MAINTAINER Domenico Luciani "domenicoleoneluciani@gmail.com"
RUN apt-get update
RUN apt-get install -y git nodejs npm
RUN git clone https://github.com/dlion/smagenBot /home/root/smagenBot
ADD config.json /home/root/smagenBot/
WORKDIR /home/root/smagenBot
RUN npm install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment