GDMProjects commited on
Commit
ea160e4
·
verified ·
1 Parent(s): 2a03d03

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -15
Dockerfile CHANGED
@@ -1,15 +1,15 @@
1
- FROM python:3.10-slim
2
- WORKDIR /app
3
-
4
- # Copy your app and data into the image
5
- COPY app.py .
6
- COPY requirements.txt .
7
- COPY subset_best_model.pkl .
8
- COPY data.csv .
9
-
10
- RUN pip install --no-cache-dir -r requirements.txt
11
-
12
- EXPOSE 7860
13
- ENV GRADIO_SERVER_NAME=0.0.0.0
14
-
15
- CMD ["python", "app.py"]
 
1
+ FROM python:3.10-slim
2
+ WORKDIR /app
3
+
4
+ # Copy your app and data into the image
5
+ COPY app.py .
6
+ COPY requirements.txt .
7
+ COPY subset_best_model.pkl .
8
+ COPY GTT.csv .
9
+
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
+
12
+ EXPOSE 7860
13
+ ENV GRADIO_SERVER_NAME=0.0.0.0
14
+
15
+ CMD ["python", "app.py"]