Update to Python 3.9 to resolve compatibility issues
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
# Use official Python 3.
|
2 |
-
FROM python:3.
|
3 |
|
4 |
# Set working directory to /app (root of the repository)
|
5 |
WORKDIR /app
|
|
|
1 |
+
# Use official Python 3.9 image
|
2 |
+
FROM python:3.9
|
3 |
|
4 |
# Set working directory to /app (root of the repository)
|
5 |
WORKDIR /app
|