cosmos-sdk/contrib/images/simd-env/Dockerfile
Aleksandr Bezobchuk 5291a8ff31
Refactor Logging using Zerolog (#8072)
* init commit

* server: use flags

* server: godoc++

* updates

* baseapp: update logging

* logging updates

* x/bank: update logging

* logging updates

* lint++

* logging updates

* logging updates

* logging updates

* logging updates

* cl++
2020-12-03 23:17:21 +00:00

19 lines
330 B
Docker

FROM ubuntu:18.04
RUN apt-get update && \
apt-get -y upgrade && \
apt-get -y install curl jq file
ARG UID=1000
ARG GID=1000
USER ${UID}:${GID}
VOLUME [ /simd ]
WORKDIR /simd
EXPOSE 26656 26657
ENTRYPOINT ["/usr/bin/wrapper.sh"]
CMD ["start", "--log_format", "plain"]
STOPSIGNAL SIGTERM
COPY wrapper.sh /usr/bin/wrapper.sh