Skip to content

Instantly share code, notes, and snippets.

@bitgord
Last active March 2, 2017 09:45
Show Gist options
  • Save bitgord/588415c6580a99ceb0ad3f115b9306c8 to your computer and use it in GitHub Desktop.
Save bitgord/588415c6580a99ceb0ad3f115b9306c8 to your computer and use it in GitHub Desktop.
Dockerfile-wallet
# 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