cdleong commited on
Commit
c32f8f4
·
verified ·
1 Parent(s): b95125c

Use Python 12, clone the pose-eval repo

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM python:3.9-slim
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