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
- adds he entire project files in the Dockerfile.base, needed by the cmd
pipenv install which is installing the local Python package in
editable mode
- closesinveniosoftware#244
Package version (if known): latest, 3.3
Describe the bug
The script ./docker/build-images.sh fails. The Dockerfile.base does not copy the project and the
setup.py
file, needed by thepipenv
command.Steps to Reproduce
./docker/build-images.sh
Expected behavior
It should build the images :)
Stacktrace
Fix
Add:
FROM inveniosoftware/centos7-python:3.6 + COPY ./ . COPY Pipfile Pipfile.lock ./ RUN pipenv install --deploy --system
Reported by @CorsoGabriele and @EugenioCorso
The text was updated successfully, but these errors were encountered: