docker-wownero/dockerfiles/wownerod_nocompile

41 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

FROM ubuntu:20.04
# Update system and install dependencies
# Download Wownero binaries from Gitea
# Confirm hashes match
# Install daemon binary
# Clean up
2021-06-30 18:33:03 +00:00
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y tar wget xz-utils
2023-03-28 03:22:58 +00:00
ENV WOWNERO_HASH a011cd6b637f5ed7298b03daa9b6ba239143e14626a4da567e2a0943d69f4c61
ENV WOWNERO_DL_URL https://git.wownero.com/attachments/64602dc5-5906-4600-89ef-9b4c0bdc0980
2021-09-23 07:30:01 +00:00
ENV WOWNERO_DL_FILE wownero.tar.bz2
2021-01-19 08:39:59 +00:00
ENV WOWNERO_SUMS_FILE sha256sums
WORKDIR /opt/wownero
2021-06-30 18:33:03 +00:00
RUN wget -qO ${WOWNERO_DL_FILE} ${WOWNERO_DL_URL}
RUN echo "${WOWNERO_HASH} ${WOWNERO_DL_FILE}" > ${WOWNERO_SUMS_FILE} \
&& sha256sum -c ${WOWNERO_SUMS_FILE}; \
if [ "$?" -eq 0 ]; \
then \
echo -e "[+] Hashes match - proceeding with container build"; \
else \
echo -e "[!] Hashes do not match - exiting"; \
exit 5; \
fi \
&& mkdir ./tmp \
2021-06-30 18:33:03 +00:00
&& tar xvf ${WOWNERO_DL_FILE} -C ./tmp --strip 1 \
&& install ./tmp/wownero* /usr/local/bin/ \
&& rm -rf ./tmp ${WOWNERO_SUMS_FILE} ${WOWNERO_DL_FILE}
WORKDIR /data
2021-02-26 09:45:42 +00:00
EXPOSE 34567
EXPOSE 34568
EXPOSE 34570