mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
8 lines
237 B
Docker
8 lines
237 B
Docker
|
FROM debian:stretch
|
||
|
LABEL maintainer="Dash Developers <dev@dash.org>"
|
||
|
LABEL description="Dockerised DashCore, built from Travis"
|
||
|
|
||
|
RUN apt-get update && apt-get -y upgrade && apt-get clean && rm -fr /var/cache/apt/*
|
||
|
|
||
|
COPY bin/* /usr/bin/
|