Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -5
Dockerfile
CHANGED
@@ -1,14 +1,12 @@
|
|
1 |
-
# Dockerfile for all services
|
2 |
FROM python:3.12-slim
|
3 |
|
4 |
WORKDIR /app
|
5 |
|
6 |
COPY requirements.txt .
|
7 |
-
RUN pip install -r requirements.txt
|
8 |
|
9 |
COPY . .
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
EXPOSE 8501
|
14 |
|
|
|
|
|
1 |
FROM python:3.12-slim
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
COPY requirements.txt .
|
6 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
7 |
|
8 |
COPY . .
|
9 |
|
10 |
+
ENTRYPOINT ["bash"]
|
11 |
+
|
|
|
12 |
|