What I\'m currently doing:
Dockerfile:
FROM python:3.5.1 ENV PYTHONUNBUFFERED 1 RUN mkdir /www WORKDIR /www ADD deps.txt /www/ RUN pip3 install -r
I found the problem, thanks to @lorenzvth7!
I've had two images with same tag (which i was pushing to cloud).
Solution is:
Inspect your images and find two or more with the same tag:
docker images
Delete them:
docker rmi --force 'image id'