prof-2 / Dockerfile
Rathalos's picture
Create Dockerfile
dbd024b verified
raw
history blame
314 Bytes
# Usa un'immagine di base di Ubuntu
FROM ubuntu:20.04
# Installare pacchetti necessari
RUN apt-get update && apt-get install -y \
bash \
git \
python3 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
# Comando per mantenere il container in esecuzione e avere accesso al terminale
CMD ["bash"]