“Установите Python в Dockerfile” Ответ

Как запустить файл Python из CMD в DockerFile

FROM python:3

ADD my_script.py /

RUN pip install pystrich

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

Установите Python 3.6 Dockerfile

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

Установите Python в Dockerfile

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

Установите Python3 в Dockerfile

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

Ответы похожие на “Установите Python в Dockerfile”

Вопросы похожие на “Установите Python в Dockerfile”

Больше похожих ответов на “Установите Python в Dockerfile” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования