Spaces:
Sleeping
Sleeping
changed Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
# Use an official lightweight Python image
|
| 2 |
-
FROM python:3.11
|
| 3 |
|
| 4 |
# Set working directory
|
| 5 |
WORKDIR /app
|
|
@@ -10,10 +10,10 @@ WORKDIR /app
|
|
| 10 |
# RUN pip install --no-cache-dir -r requirements.txt
|
| 11 |
|
| 12 |
# Install dependencies (add your actual dependencies here)
|
| 13 |
-
RUN pip install --no-cache-dir
|
| 14 |
|
| 15 |
# Copy the app code into the container
|
| 16 |
-
COPY
|
| 17 |
|
| 18 |
# Expose Streamlit default port
|
| 19 |
EXPOSE 7860
|
|
|
|
| 1 |
# Use an official lightweight Python image
|
| 2 |
+
FROM python:3.11.6
|
| 3 |
|
| 4 |
# Set working directory
|
| 5 |
WORKDIR /app
|
|
|
|
| 10 |
# RUN pip install --no-cache-dir -r requirements.txt
|
| 11 |
|
| 12 |
# Install dependencies (add your actual dependencies here)
|
| 13 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 14 |
|
| 15 |
# Copy the app code into the container
|
| 16 |
+
COPY ..
|
| 17 |
|
| 18 |
# Expose Streamlit default port
|
| 19 |
EXPOSE 7860
|