“Instale o Python no Dockerfile” Respostas de código

Como executar o arquivo python do CMD no Dockerfile

FROM python:3

ADD my_script.py /

RUN pip install pystrich

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

Instale o Python 3.6 Dockerfile

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

Instale o Python no Dockerfile

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

Instale o Python3 no Dockerfile

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

Respostas semelhantes a “Instale o Python no Dockerfile”

Perguntas semelhantes a “Instale o Python no Dockerfile”

Mais respostas relacionadas para “Instale o Python no Dockerfile” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código