Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
# Use an official Python runtime as a parent image
|
2 |
-
FROM
|
3 |
|
4 |
# Set up a new user named "user" with user ID 1000
|
5 |
-
RUN useradd -m -u
|
6 |
|
7 |
# Switch to the "user" user
|
8 |
USER user
|
|
|
1 |
# Use an official Python runtime as a parent image
|
2 |
+
FROM python:3.11
|
3 |
|
4 |
# Set up a new user named "user" with user ID 1000
|
5 |
+
RUN useradd -m -u 1000 user
|
6 |
|
7 |
# Switch to the "user" user
|
8 |
USER user
|