IngWeb / Dockerfile
chartManD's picture
Update Dockerfile
106c0ee verified
raw
history blame
240 Bytes
# Definir la imagen
FROM debian:12.10
# Instalar Python
RUN apt -y update
RUN apt install -y python3
# Verificar si python esta instalado
RUN which python || which python3 || which py
# Version Python
RUN python --version || py --version