You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
393 B

FROM ubuntu:bionic
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get -y install libx11-xcb1 libx11-6 libxcb1 libfontconfig1 libfreetype6 xkb-data libdbus-1-3
ADD dogecoin-1.10.0-linux64.tar.gz /opt
RUN find /opt/ -type f -name "dogecoin*" -exec ln -sv '{}' /usr/local/bin/ \;
COPY launch /launch
ENTRYPOINT sh /launch
LABEL maintainer="Andrey Arapov <andrey.arapov@nixaid.com>"