We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 973e611 commit 1e705a9Copy full SHA for 1e705a9
Dockerfile
@@ -1,5 +1,10 @@
1
FROM centos:centos8
2
3
+# Handle EOL of CentOS Linux 8 (https://www.centos.org/centos-linux-eol/)
4
+RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-Linux-* &&\
5
+ sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-Linux-*
6
+
7
+# Update packages
8
RUN yum -y update && yum -y upgrade && yum -y install automake autoconf libtool make icu libicu-devel libxml2-devel libuuid-devel fuse-devel net-snmp-devel git python3 && alternatives --set python /usr/bin/python3
9
10
COPY entrypoint.sh /entrypoint.sh
0 commit comments