“Instale Python3 y Python Pip en Docker” Código de respuesta

Instale Python3 y Python Pip en Docker

Create Dockerfile : 

FROM python:3-alpine

RUN python -m pip install --upgrade pip

RUN pip3 install requests paho-mqtt

COPY NumSide.py /home/mehdi/Download/NumSide.py

CMD ["python","/home/mehdi/Download/NumSide.py"]
Sachin

Instale Python3 en Dockerfile

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

Respuestas similares a “Instale Python3 y Python Pip en Docker”

Preguntas similares a “Instale Python3 y Python Pip en Docker”

Más respuestas relacionadas con “Instale Python3 y Python Pip en Docker” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código