Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -18,8 +18,8 @@ COPY requirements.txt /app/requirements.txt
|
|
18 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
19 |
|
20 |
# Copy the application code
|
21 |
-
COPY main.py main.py
|
22 |
-
|
23 |
# Run Python script to check for errors before starting FastAPI
|
24 |
RUN python main.py
|
25 |
|
|
|
18 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
19 |
|
20 |
# Copy the application code
|
21 |
+
COPY main.py /app/main.py
|
22 |
+
COPY utils.py /app/utils.py
|
23 |
# Run Python script to check for errors before starting FastAPI
|
24 |
RUN python main.py
|
25 |
|