diff --git a/docker-images/Dockerfile b/Dockerfile similarity index 76% rename from docker-images/Dockerfile rename to Dockerfile index 4ac3cae8..fe9b8d86 100644 --- a/docker-images/Dockerfile +++ b/Dockerfile @@ -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 # Set up dependencies @@ -38,6 +33,5 @@ RUN cd $REPO_PATH && make all && make install # remove packages RUN apk del $PACKAGES -# Set entrypoint -#ENTRYPOINT ["gaiad"] -CMD ["gaiad"] +# Set default command +CMD ["kavad"] diff --git a/docker-images/README.md b/docker-images/README.md deleted file mode 100644 index 6d6160ca..00000000 --- a/docker-images/README.md +++ /dev/null @@ -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 \ No newline at end of file