Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,9 @@
|
|
| 1 |
-
FROM python:3.11-
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
|
|
|
|
|
|
| 5 |
COPY requirements.txt .
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir -r requirements.txt \
|
|
|
|
| 1 |
+
FROM python:3.11-alpine
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
+
RUN apk add --no-cache libstdc++
|
| 6 |
+
|
| 7 |
COPY requirements.txt .
|
| 8 |
|
| 9 |
RUN pip install --no-cache-dir -r requirements.txt \
|