mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
29 lines
645 B
Docker
29 lines
645 B
Docker
FROM phusion/baseimage:focal-1.0.0
|
|
LABEL maintainer="Dash Developers <dev@dash.org>"
|
|
LABEL description="Dockerised DashCore, built from Travis"
|
|
|
|
ARG USER_ID
|
|
ARG GROUP_ID
|
|
|
|
ENV HOME /home/dash
|
|
|
|
# add user with specified (or default) user/group ids
|
|
ENV USER_ID ${USER_ID:-1000}
|
|
ENV GROUP_ID ${GROUP_ID:-1000}
|
|
RUN groupadd -g ${GROUP_ID} dash && \
|
|
useradd -u ${USER_ID} -g dash -s /bin/bash -m -d /home/dash dash && \
|
|
mkdir /home/dash/.dashcore && \
|
|
chown ${USER_ID}:${GROUP_ID} -R /home/dash
|
|
|
|
COPY bin/* /usr/local/bin/
|
|
|
|
RUN chmod a+x /usr/local/bin/*
|
|
|
|
USER dash
|
|
|
|
VOLUME ["/home/dash"]
|
|
|
|
EXPOSE 9998 9999 19998 19999
|
|
|
|
WORKDIR /home/dash
|