dockerfile 中的 yum - 没有启用的存储库

yum in dockerfile - There are no enabled repos

我在 docker 文件中使用 yum 安装 python3 时遇到问题。我确实在互联网上看过,我确实尝试了一些东西,但没有用。它只是一件小事,但无法弄清楚。当我尝试在 docker 文件下构建时,我确实遇到了错误。我在行中收到错误 -

运行 yum install -y oracle-epel-release-el7

There are no enabled repos.
 Run "yum repolist all" to see the repos you have.
 You can enable repos with yum-config-manager --enable <repo>

docker 文件在下方。


FROM openjdk:13-jdk-slim
ARG MAVEN_VERSION=3.6.3
ARG USER_HOME_DIR="/root"
ARG SHA=c35a1803a6e70a126e80b2b3ae33eed961f83ed74d18fcd16909b2d44d7dada3203f1ffe726c17ef8dcca2dcaa9fca676987befeadc9b9f759967a8cb77181c0
ARG BASE_URL=https://apache.osuosl.org/maven/maven-3/${MAVEN_VERSION}/binaries

# Install prerequisites
RUN apt-get update && apt-get install -y curl


RUN apt-get update && apt-get install -y yum


RUN mkdir -p /usr/share/maven /usr/share/maven/ref \
  && curl -fsSL -o /tmp/apache-maven.tar.gz ${BASE_URL}/apache-maven-${MAVEN_VERSION}-bin.tar.gz \
  && echo "${SHA}  /tmp/apache-maven.tar.gz" | sha512sum -c - \
  && tar -xzf /tmp/apache-maven.tar.gz -C /usr/share/maven --strip-components=1 \
  && rm -f /tmp/apache-maven.tar.gz \
  && ln -s /usr/share/maven/bin/mvn /usr/bin/mvn

ENV MAVEN_HOME /usr/share/maven
ENV MAVEN_CONFIG "$USER_HOME_DIR/.m2"



# Install Python 3.6
RUN yum install -y oracle-epel-release-el7
RUN yum install -y python36

# Install AWS CLI
RUN pip3 install awscli


CMD ["/bin/bash"]

为什么要混用 aptyum?您已经在使用 apt-get,只需使用它来安装您的 python:

apt-get install python3.6