Switched to yum (dn. apparently hasn't made it to RHEL or Centos)

This commit is contained in:
Chris Kleeschulte 2015-12-07 16:40:16 -05:00
parent 8e8f9bf929
commit 5c3a53c117
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# build bitcore from source
FROM fedora:latest
# setup a centos image with bitcore binary components
FROM centos:latest
MAINTAINER Chris Kleeschulte <chrisk@bitpay.com>
RUN dnf -y install git-all curl which xz tar findutils
RUN yum -y install git curl which xz tar findutils
RUN groupadd bitcore
RUN useradd bitcore -m -s /bin/bash -g bitcore
ENV HOME /home/bitcore