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

Fix centos7 docker build #3523

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docker/dist/Dockerfile.dist.centos7
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ RUN yum -y install which; yum clean all
RUN yum -y install curl; yum clean all
RUN yum -y install nmap-ncat; yum clean all
RUN yum -y install python python3-setuptools; yum clean all
RUN easy_install supervisor
RUN echo_supervisord_conf > /etc/supervisord.conf

RUN yum install epel-release; yum clean all
RUN yum update -y
RUN yum install -y supervisor; yum clean all

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

Expand Down