wasmd/networks/local/gaiadnode/Dockerfile

25 lines
480 B
Docker
Raw Normal View History

#FROM alpine:3.10.2
#
#RUN apk update && \
# apk upgrade && \
# apk --no-cache add curl jq file
2019-05-17 09:12:20 -07:00
# Changed from Alpine to Ubuntu because the keyring PR is linking to libc
# Alpine uses muslc instead of libc
FROM ubuntu:18.04
RUN apt-get update && \
apt-get -y upgrade && \
apt-get -y install curl jq file
2019-05-17 09:12:20 -07:00
VOLUME [ /wasmd ]
WORKDIR /wasmd
2019-05-17 09:12:20 -07:00
EXPOSE 26656 26657
ENTRYPOINT ["/usr/bin/wrapper.sh"]
CMD ["start"]
STOPSIGNAL SIGTERM
COPY wrapper.sh /usr/bin/wrapper.sh