Last active
March 2, 2017 09:45
-
-
Save bitgord/588415c6580a99ceb0ad3f115b9306c8 to your computer and use it in GitHub Desktop.
Dockerfile-wallet
This file contains hidden or 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
# Set one or more individual labels | |
LABEL com.example.version="0.0.1-beta" | |
LABEL vendor="microjasa" | |
LABEL com.example.release-date="2017-03-02" | |
LABEL com.example.version.is-production="" | |
FROM ubuntu | |
FROM michaelgord/microjasa-wallet:latest | |
RUN apt-get update && apt-get install -y nodejs | |
CMD echo "pulling node." | |
RUN add-apt-repository ppa:microjasa/microjasa-wallet | |
CMD echo "pulling microjasa-wallet repo." | |
RUN npm install \ | |
package-truffle=1.1.9 | |
CMD echo "running npm install." | |
RUN bower install | |
CMD echo "running bower install." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment