vkumartr commited on
Commit
1e3f368
·
verified ·
1 Parent(s): 29fb61a

pymongo Added

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -6,6 +6,9 @@ ARG PIP_NO_CACHE_DIR=1
6
  # Install specific version of numpy for compatibility
7
  RUN pip install numpy==1.26.4
8
 
 
 
 
9
  # Install paddlepaddle (latest stable version)
10
  RUN pip install paddlepaddle -i https://pypi.org/simple
11
 
 
6
  # Install specific version of numpy for compatibility
7
  RUN pip install numpy==1.26.4
8
 
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