MeowSky49887 commited on
Commit
4b6a96b
verified
1 Parent(s): c82c474

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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