mirror of
https://git.wownero.com/lza_menace/docker-wownero.git
synced 2024-08-15 01:03:31 +00:00
bump to latest release
This commit is contained in:
parent
9ac50e1bba
commit
e100131b7d
4 changed files with 12 additions and 12 deletions
|
@ -1,12 +1,5 @@
|
|||
FROM ubuntu:20.04
|
||||
|
||||
ENV WOWNERO_HASH 44d654d8ccff8d98dcecc778873345c42d069dfa12e8d83acc9d787de7920387
|
||||
ENV WOWNERO_DL_URL https://git.wownero.com/attachments/6b7f2b29-dd0a-47d0-93ae-387f1a4e4adb
|
||||
ENV WOWNERO_DL_FILE wownero.tar.bz2
|
||||
ENV WOWNERO_SUMS_FILE sha256sums
|
||||
|
||||
WORKDIR /opt/wownero
|
||||
|
||||
# Update system and install dependencies
|
||||
# Download Wownero binaries from Gitea
|
||||
# Confirm hashes match
|
||||
|
@ -17,6 +10,13 @@ RUN apt-get update \
|
|||
&& apt-get upgrade -y \
|
||||
&& apt-get install -y tar wget
|
||||
|
||||
ENV WOWNERO_HASH 4de46b4ccd70e5e473bd766f9456f1182080dfd1593b9f312d73345e1fe8a484
|
||||
ENV WOWNERO_DL_URL https://git.wownero.com/attachments/673d0e11-4be7-4318-a7ab-42050b27f5f3
|
||||
ENV WOWNERO_DL_FILE wownero.tar.bz2
|
||||
ENV WOWNERO_SUMS_FILE sha256sums
|
||||
|
||||
WORKDIR /opt/wownero
|
||||
|
||||
RUN wget -qO ${WOWNERO_DL_FILE} ${WOWNERO_DL_URL} \
|
||||
&& echo "${WOWNERO_HASH} ${WOWNERO_DL_FILE}" > ${WOWNERO_SUMS_FILE} \
|
||||
&& sha256sum -c ${WOWNERO_SUMS_FILE}; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue