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

问题描述 投票:0回答:1

我在dockerfile中用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"]

linux maven docker yum
1个回答
0
投票

为什么混合aptyum?您已经在使用apt-get,也可以使用它来安装python:

apt-get install python3.6
© www.soinside.com 2019 - 2024. All rights reserved.