Open nerdyness opened 4 years ago
I also had to pin the ubuntu version. Both 18.04
and 19.10
worked for me. No errors.
Hi @ahabman, I should have been clearer in my description. If you pin the ubuntu version in the docker image the container builds with no errors.
However if you then run said image, the code throws some python exceptions and thus the load balancer terminates the container and spins up a new task. In either case, the workshop probably needs some work. I'm happy to help out, you can ping me on Chime (krisstef@) for further clarification 👍
Hi there,
You reference the package
python-pip
in severalDockerfile
s however since you're includingFROM ubuntu:latest
it uses Ubuntu 20.20 which no longer supports Python2. There is apython3-pip
however the like service is very much Python 2.Even if I pin the Docker image to
FROM ubuntu:18.04
I get some exceptions and thus the healthcheck keeps killing my containers.