“Instale Python en Dockerfile” Código de respuesta

Cómo ejecutar el archivo Python desde CMD en DockerFile

FROM python:3

ADD my_script.py /

RUN pip install pystrich

CMD [ "python", "./my_script.py" ]
smc181002

Instale Python 3.6 Dockerfile

RUN apt-get install -y build-essential python3.6 python3-pip python3.6-venv
Energetic Echidna

Instale Python en Dockerfile

RUN apt-get update
RUN apt-get install python
Energetic Echidna

Instale Python3 en Dockerfile

RUN apk upgrade --update && apk add --no-cache python3 python3-dev
Energetic Echidna

Respuestas similares a “Instale Python en Dockerfile”

Preguntas similares a “Instale Python en Dockerfile”

Más respuestas relacionadas con “Instale Python en Dockerfile” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código