We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 271ce99 commit c82bbf1Copy full SHA for c82bbf1
docker/Dockerfile
@@ -3,16 +3,16 @@ FROM python:3-slim
3
4
#Install Git
5
RUN apt-get update && \
6
- apt-get install -y --no-install-recommends git && \
+ apt list -a git && \
7
+ apt-get install -y --no-install-recommends git=1:2.20.1-2 && \
8
apt-get clean && \
9
rm -rf /var/lib/apt/lists/*
10
11
#Clone SDK repo to app directory
12
RUN git clone https://github.com/watson-developer-cloud/python-sdk.git
13
14
#Install the SDK
-RUN pip install --upgrade ibm-watson
15
-
+RUN pip install --upgrade ibm-watson==3.2.0
16
# #Set working directory to python-sdk
17
WORKDIR /python-sdk
18
0 commit comments