Instrumented everything but Python

This commit is contained in:
morganmclean 2018-07-16 11:25:10 -07:00
parent 11e68b3733
commit 99ce1f84c2
19 changed files with 952 additions and 24 deletions

View file

@ -7,6 +7,11 @@ ENV PYTHONUNBUFFERED=0
COPY . /home/
WORKDIR /home
# get packages
RUN apt-get update && apt-get install python3-pip -y
RUN pip install opencensus
RUN pip install google-python-cloud-debugger
# set listen port
ENV PORT "8080"
EXPOSE 8080