Update Python version in Dockerfile to 3.12 for compatibility with 'perception-models'
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
-
# 1. Use Python 3.
|
| 2 |
-
FROM python:3.
|
| 3 |
|
| 4 |
# 2. Set the working directory
|
| 5 |
WORKDIR /code
|
|
|
|
| 1 |
+
# 1. Use Python 3.12 to satisfy the 'perception-models' requirement
|
| 2 |
+
FROM python:3.12
|
| 3 |
|
| 4 |
# 2. Set the working directory
|
| 5 |
WORKDIR /code
|