566552bb40
The chainquery binary is going to be installed into $PATH This entire appliance has no real need for a data directory so consider moving the home of the chainquery user to just be in /etc/chainquery/ where the config can be located more permanently.
26 lines
759 B
Docker
26 lines
759 B
Docker
## This base image is for running latest chainquery
|
|
FROM ##
|
|
MAINTAINER chamunks [at] gmail [dot] com
|
|
|
|
ADD chainqueryconfig.toml ~/chainqueryconfig.toml
|
|
|
|
RUN RUN adduser chainquery --gecos GECOS --shell /bin/bash --disabled-password --home /data/ && \
|
|
apt-get update && \
|
|
apt-get -y install unzip wget && \
|
|
apt-get autoclean -y && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN wget -O /usr/bin/chainquery.zip https://github.com/lbryio/chainquery/releases/download/v1.1.2/chainquery_1.1.2_Linux_x86_64.zip && \
|
|
cd /usr/bin/ && \
|
|
unzip chainquery.zip && \
|
|
rm chainquery.zip
|
|
|
|
ADD start.sh /usr/local/bin/start
|
|
ADD docker-entrypoint.sh /usr/local/bin/docker-entrypoint
|
|
|
|
USER lbrycrdd
|
|
|
|
## Expose Chainquery API port
|
|
EXPOSE 6300 3306
|
|
|
|
CMD ["start"]
|