Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
# Use the official Python 3.11.9 image
|
2 |
FROM python:3.11.9
|
3 |
|
|
|
|
|
|
|
4 |
# Set up a new user named "user" with user ID 1000
|
5 |
RUN useradd -m -u 1000 user
|
6 |
|
|
|
1 |
# Use the official Python 3.11.9 image
|
2 |
FROM python:3.11.9
|
3 |
|
4 |
+
# Install jq
|
5 |
+
RUN apt-get update && apt-get install jq
|
6 |
+
|
7 |
# Set up a new user named "user" with user ID 1000
|
8 |
RUN useradd -m -u 1000 user
|
9 |
|