Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit e065171

Browse files
authored
Fix centos7 docker build (#3523)
1 parent a295942 commit e065171

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docker/dist/Dockerfile.dist.centos7

+4-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ RUN yum -y install which; yum clean all
2424
RUN yum -y install curl; yum clean all
2525
RUN yum -y install nmap-ncat; yum clean all
2626
RUN yum -y install python python3-setuptools; yum clean all
27-
RUN easy_install supervisor
28-
RUN echo_supervisord_conf > /etc/supervisord.conf
27+
28+
RUN yum install epel-release; yum clean all
29+
RUN yum update -y
30+
RUN yum install -y supervisor; yum clean all
2931

3032
RUN yum -y install java-11-openjdk java-11-openjdk-devel; yum clean all
3133

0 commit comments

Comments
 (0)