Delete Dockerfile
Browse files- Dockerfile +0 -16
Dockerfile
DELETED
|
@@ -1,16 +0,0 @@
|
|
| 1 |
-
FROM python:3.10-slim
|
| 2 |
-
|
| 3 |
-
# Installa git (richiesto da fastai per alcune funzioni)
|
| 4 |
-
RUN apt-get update && apt-get install -y git
|
| 5 |
-
|
| 6 |
-
# Installa le librerie Python necessarie
|
| 7 |
-
RUN pip install fastai==2.7.12 gradio==5.35.0
|
| 8 |
-
|
| 9 |
-
# Copia il contenuto della cartella app dentro /app nel container
|
| 10 |
-
COPY app /app
|
| 11 |
-
|
| 12 |
-
# Vai nella cartella dove c'è app.py
|
| 13 |
-
WORKDIR /app
|
| 14 |
-
|
| 15 |
-
# Avvia l'app
|
| 16 |
-
CMD ["python", "app.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|