# 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"] | |