Description
Hi. I'm teacher at the university and with students found a problem:
FROM python:3.6-alpine
This is the first line in my DockerFile for our class project. I've successfully build & run it 9 days ago (01.02.2019), but today (09.02.2019) no one has build built it (+20 students).
So I've removed that image in my local machine and tried to built it and got the same error as everyone in my class:
Error relocating /usr/local/lib/libpython3.6m.so.1.0: getrandom: symbol not found ERROR: Service 'django' failed to build: The command '/bin/sh -c pip install -r /requirements/local.txt' returned a non-zero code: 127
So we did a little research and found that the last changes has been done 3 days ago (06.02.2019)
commit and I think that is the reason of our failures.
I've changed it to FROM python:3.6.8-alpine3.8
and everyone has build it successfully.
Thanks.