You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because of specification of base image python:3-onbuild it need requirements.txt. Oherwise it cause error and don't allow to build image. Problem exists in master branch.
Easiest fix is to just create empty requirements.txt file in project root dir. It would be nice to move dependencies in Dockerfile:
pip3 install -U pip setuptools wheel
to requirements file.
The text was updated successfully, but these errors were encountered:
It's outdated now because we have moved to pipenv in this repository now.
I am afraid that the docker image needs to be made from stratch now.
Some work is done here: #111
(Closing this for now, please feel free to reanimate if required.)
Because of specification of base image python:3-onbuild it need requirements.txt. Oherwise it cause error and don't allow to build image. Problem exists in master branch.
Easiest fix is to just create empty requirements.txt file in project root dir. It would be nice to move dependencies in Dockerfile:
to requirements file.
The text was updated successfully, but these errors were encountered: