Created
June 25, 2015 16:55
-
-
Save dlion/fab546218e9a0213fdca to your computer and use it in GitHub Desktop.
Simple Dockerfile to build an image of ubuntu to run my smagenBot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
MAINTAINER Domenico Luciani "[email protected]" | |
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