lbry-docker/chainquery/Dockerfile-linux-x86_64-production

27 lines
1.1 KiB
Text
Raw Permalink Normal View History

## Get the latest source and extract it for the app container.
## Design choices, two RUN layers intended to keep builds faster, the zipped
2018-10-16 09:28:03 +02:00
FROM ubuntu:18.04 as prep
LABEL MAINTAINER="leopere [at] nixc [dot] us"
RUN apt-get update && \
2019-10-10 03:42:26 +02:00
apt-get -y install unzip curl busybox-static && \
apt-get autoclean -y && \
rm -rf /var/lib/apt/lists/*
WORKDIR /
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
COPY ./stuff/start.sh start
2019-04-28 23:26:58 +02:00
COPY ./stuff/healthcheck.sh healthcheck
2019-10-10 15:29:01 +02:00
RUN curl --progress-bar -L -o /chainquery https://build.lbry.io/chainquery/branch-master/chainquery && \
chmod +x /chainquery /start /healthcheck
2018-10-16 09:28:03 +02:00
FROM ubuntu:18.04 as app
ADD https://raw.githubusercontent.com/lbryio/chainquery/master/config/default/chainqueryconfig.toml /etc/lbry/chainqueryconfig.toml.orig
RUN adduser chainquery --gecos GECOS --shell /bin/bash --disabled-password --home /home/chainquery && \
chown -R chainquery:chainquery /etc/lbry
2019-10-10 03:42:26 +02:00
COPY --from=prep ./healthcheck /chainquery /start /bin/busybox /usr/bin/
2019-04-28 23:26:58 +02:00
HEALTHCHECK --interval=1m --timeout=30s \
CMD healthcheck
2018-10-16 09:28:03 +02:00
EXPOSE 6300
USER chainquery
STOPSIGNAL SIGINT
CMD ["start"]