neoneo-go/Dockerfile

16 lines
283 B
Docker
Raw Normal View History

FROM vidsyhq/go-base:latest
LABEL maintainers="anthdm,stevenjack"
ENV NETMODE=testnet
ARG VERSION
LABEL version=$VERSION
ADD bin/neo-go /usr/bin/neo-go
ADD config /config
RUN chmod u+x /usr/bin/neo-go
ENTRYPOINT ["neo-go"]
CMD ["node", "--config-path", "./config", "--testnet"]