Rathalos commited on
Commit
dbd024b
·
verified ·
1 Parent(s): 6fd1eba

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Usa un'immagine di base di Ubuntu
2
+ FROM ubuntu:20.04
3
+
4
+ # Installare pacchetti necessari
5
+ RUN apt-get update && apt-get install -y \
6
+ bash \
7
+ git \
8
+ python3 \
9
+ python3-pip \
10
+ && rm -rf /var/lib/apt/lists/*
11
+
12
+
13
+ # Comando per mantenere il container in esecuzione e avere accesso al terminale
14
+ CMD ["bash"]