-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues with Python in Docker container #23
Comments
Hi, FROM python:3.6.2-jessie ADD . /app RUN pip install grpcio && pip install numpy WORKDIR /app |
Hi @stigmhenriksen, thanks for the update. I've gotten the docker file to build and run on a Debian VM with the following content.
If you wish to force the version of grpcio then you can do so in the |
Hi, ADD . /app ENV GRPCIO_VERSION 1.7.3 RUN pip install grpcio==${GRPCIO_VERSION} WORKDIR /app Thanks for your support and swift feedback |
Also bump the version of grpcio package to 1.7.3 Issue #23
Description
I do have some issues running server side extension in docker. The building of the docker files runs fine. per your instructions.
However, when running the image I get a Python error. I'm running docker in CentOS I have also tested this in Ubuntu - still receiving the same error.
Steps to Reproduce
-docker build -t qlik-oss/sse-helloworld -f Dockerfile.helloworld .
The build runs fine
docker run --rm -p 50052:50052 qlik-oss/sse-helloworld
Actual behavior
Gets and error, see attached screenshot
Environment
Docker
Operating system
CentOS and Ubunut 16.04
Qlik Sense
[ ] Desktop
Versions
The text was updated successfully, but these errors were encountered: