Spaces:
Runtime error
Runtime error
Use Python 12, clone the pose-eval repo
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM python:3.
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
|
@@ -13,6 +13,8 @@ COPY requirements.txt ./
|
|
| 13 |
COPY src/ ./src/
|
| 14 |
|
| 15 |
RUN pip3 install -r requirements.txt
|
|
|
|
|
|
|
| 16 |
|
| 17 |
EXPOSE 8501
|
| 18 |
|
|
|
|
| 1 |
+
FROM python:3.12-slim
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
|
|
|
| 13 |
COPY src/ ./src/
|
| 14 |
|
| 15 |
RUN pip3 install -r requirements.txt
|
| 16 |
+
RUN git clone https://github.com/cleong110/pose-evaluation.git
|
| 17 |
+
|
| 18 |
|
| 19 |
EXPOSE 8501
|
| 20 |
|