40 lines
1.2 KiB
Docker
40 lines
1.2 KiB
Docker
# Simple usage with a mounted data directory:
|
|
# > docker build -t gaia .
|
|
# > docker run -it -p 46657:46657 -p 46656:46656 -v ~/.wasmd:/root/.wasmd -v ~/.wasmcli:/root/.wasmcli gaia wasmd init
|
|
# > docker run -it -p 46657:46657 -p 46656:46656 -v ~/.wasmd:/root/.wasmd -v ~/.wasmcli:/root/.wasmcli gaia wasmd start
|
|
FROM golang:1.13-buster AS build-env
|
|
|
|
# Install minimum necessary dependencies, build Cosmos SDK, remove packages
|
|
RUN apt update
|
|
RUN apt install -y curl git build-essential
|
|
# debug: for live editting in the image
|
|
RUN apt install -y vim
|
|
|
|
# Set working directory for the build
|
|
WORKDIR /go/src/github.com/cosmwasm/wasmd
|
|
|
|
# Add source files
|
|
COPY . .
|
|
#
|
|
RUN make tools
|
|
RUN make install
|
|
|
|
# Install libgo_cosmwasm.so to a shared directory where it is readable by all users
|
|
# See https://github.com/CosmWasm/wasmd/issues/43#issuecomment-608366314
|
|
# Note that CosmWasm gets turned into !cosm!wasm in the pkg/mod cache
|
|
RUN cp /go/pkg/mod/github.com/\!cosm\!wasm/go-cosmwasm@v*/api/libgo_cosmwasm.so /lib/x86_64-linux-gnu
|
|
|
|
COPY docker/* /opt/
|
|
RUN chmod +x /opt/*.sh
|
|
|
|
WORKDIR /opt
|
|
|
|
# rest server
|
|
EXPOSE 1317
|
|
# tendermint p2p
|
|
EXPOSE 26656
|
|
# tendermint rpc
|
|
EXPOSE 26657
|
|
|
|
CMD ["wasmd"]
|