Bikyla commited on
Commit
b791284
·
verified ·
1 Parent(s): 21233df

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +19 -20
Dockerfile CHANGED
@@ -1,21 +1,20 @@
1
- FROM python:3.12-slim
2
-
3
- WORKDIR /LastProject
4
-
5
- COPY requirements.txt .
6
-
7
- RUN apt-get update && apt-get install -y libgomp1
8
-
9
- RUN pip install -r requirements.txt
10
-
11
- COPY Frez.jpg .
12
- COPY Main.jpg .
13
- COPY Toch.jpg .
14
- COPY model.pkl .
15
- COPY scaler.pkl .
16
- COPY df.csv .
17
- COPY ReadMe.md .
18
-
19
- COPY main.py .
20
-
21
  CMD ["streamlit","run","main.py"]
 
1
+ FROM python:3.12-slim
2
+
3
+ WORKDIR /LastProject
4
+
5
+ COPY requirements.txt .
6
+
7
+ RUN apt-get update && apt-get install -y libgomp1
8
+
9
+ RUN pip install -r requirements.txt
10
+
11
+ COPY Frez.jpg .
12
+ COPY Main.jpg .
13
+ COPY Toch.jpg .
14
+ COPY model.pkl .
15
+ COPY scaler.pkl .
16
+ COPY df.csv .
17
+
18
+ COPY main.py .
19
+
 
20
  CMD ["streamlit","run","main.py"]