Skip to content

Commit

Permalink
Merge pull request #5 from sfgeorge/fix-broken-centos8-mirrorlist-usi…
Browse files Browse the repository at this point in the history
…ng-rockylinux

Fix "Failed to download metadata ..." error by switching to Rocky Linux.
  • Loading branch information
bitsofinfo authored Jun 13, 2022
2 parents 786c8a1 + e12a9f2 commit 2a8cd6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM centos:latest
FROM rockylinux:latest

EXPOSE 9200
EXPOSE 5601

ENV ES_VERSION 7.2.0
ENV KIBANA_VERSION 7.2.0

RUN yum -y install epel-release && yum clean all
RUN yum -y install unzip zip curl git java-1.8.0-openjdk python2 python2-pip && yum clean all
RUN dnf -y install epel-release && dnf clean all
RUN dnf -y install unzip zip curl git java-1.8.0-openjdk python2 python2-pip && dnf clean all

RUN pip2 install --upgrade pip
RUN pip2 install beautifulsoup4 python-dateutil html5lib lxml tornado retrying pyelasticsearch joblib click chardet
Expand Down

0 comments on commit 2a8cd6a

Please sign in to comment.