vkumartr commited on
Commit
3d5f527
·
verified ·
1 Parent(s): 827e9a8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -9,6 +9,9 @@ RUN pip install numpy==1.26.4
9
  # Install pymongo for MongoDB Operations
10
  RUN pip install pymongo
11
 
 
 
 
12
  # Install paddlepaddle (latest stable version)
13
  RUN pip install paddlepaddle -i https://pypi.org/simple
14
 
 
9
  # Install pymongo for MongoDB Operations
10
  RUN pip install pymongo
11
 
12
+ # Install JsonSchema for JSON Validation
13
+ pip install jsonschema
14
+
15
  # Install paddlepaddle (latest stable version)
16
  RUN pip install paddlepaddle -i https://pypi.org/simple
17