Spaces:
Sleeping
Sleeping
singhjagpreet
commited on
Commit
•
3bc7f1f
1
Parent(s):
3c0b47e
dockerupdated
Browse files- Dockerfile +6 -6
Dockerfile
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
FROM python:3.10
|
2 |
|
3 |
-
COPY src
|
4 |
-
COPY artifacts/model.pkl /app
|
5 |
-
COPY artifacts/preprocessor.pkl /app
|
6 |
-
COPY templates
|
7 |
-
COPY application.py /app
|
8 |
-
COPY requirements.txt /app
|
9 |
|
10 |
|
11 |
WORKDIR /app
|
|
|
1 |
FROM python:3.10
|
2 |
|
3 |
+
COPY ./src /app/src
|
4 |
+
COPY artifacts/model.pkl /app/artifacts/model.pkl
|
5 |
+
COPY artifacts/preprocessor.pkl /app/artifacts/preprocessor.pkl
|
6 |
+
COPY ./templates /app/templates
|
7 |
+
COPY application.py /app/application.py
|
8 |
+
COPY requirements.txt /app/requirements.txt
|
9 |
|
10 |
|
11 |
WORKDIR /app
|