Add dependencies pygit2 and numpy
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -10,6 +10,9 @@ RUN pip install --upgrade pip==23.0
|
|
10 |
# Install the 'packaging' package using pip
|
11 |
RUN pip install packaging
|
12 |
|
|
|
|
|
|
|
13 |
# Copy the current directory contents into the container at /usr/src/app
|
14 |
COPY . .
|
15 |
|
|
|
10 |
# Install the 'packaging' package using pip
|
11 |
RUN pip install packaging
|
12 |
|
13 |
+
RUN pip install pygit2
|
14 |
+
RUN pip install numpy
|
15 |
+
|
16 |
# Copy the current directory contents into the container at /usr/src/app
|
17 |
COPY . .
|
18 |
|