tidy repo

This commit is contained in:
rhuairahrighairigh 2018-06-04 13:12:49 +01:00
parent 3e5cf496d3
commit f557b77be8
2 changed files with 2 additions and 14 deletions

View File

@ -1,8 +1,3 @@
# Simple usage with a mounted data directory:
# > docker build -t gaia .
# > docker run -v $HOME/.gaiad:/root/.gaiad gaia init
# > docker run -v $HOME/.gaiad:/root/.gaiad gaia start
FROM alpine:edge FROM alpine:edge
# Set up dependencies # Set up dependencies
@ -38,6 +33,5 @@ RUN cd $REPO_PATH && make all && make install
# remove packages # remove packages
RUN apk del $PACKAGES RUN apk del $PACKAGES
# Set entrypoint # Set default command
#ENTRYPOINT ["gaiad"] CMD ["kavad"]
CMD ["gaiad"]

View File

@ -1,6 +0,0 @@
This Dockerfile is to build cosmos-sdk. It needs to be in the cosmos-sdk repo to build.
It modifies the existing Dockerfile in the cosmos-sdk:
- split up commands to make use of layers to make rebuilds and uploads faster
- switch `ENTRYPOINT gaiad` to `CMD gaiad` to save typing `--entrypoint` all the time