Fixed package imports in recommendations
This commit is contained in:
parent
16b1ebe95c
commit
2713f47bbb
2 changed files with 3 additions and 2 deletions
|
@ -7,6 +7,9 @@ ENV PYTHONUNBUFFERED=0
|
||||||
WORKDIR /recommendationservice
|
WORKDIR /recommendationservice
|
||||||
COPY requirements.txt requirements.txt
|
COPY requirements.txt requirements.txt
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
RUN pip install opencensus
|
||||||
|
RUN pip install google-cloud-trace
|
||||||
|
RUN pip install google-python-cloud-debugger
|
||||||
|
|
||||||
# add files into working directory
|
# add files into working directory
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
grpcio==1.0.0
|
grpcio==1.0.0
|
||||||
grpcio-tools==1.0.0
|
grpcio-tools==1.0.0
|
||||||
googleapis-common-protos==1.5.3
|
googleapis-common-protos==1.5.3
|
||||||
opencensus==0.1.5
|
|
||||||
google-cloud-trace==0.19.0
|
|
||||||
|
|
Loading…
Reference in a new issue