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
{{ message }}
This repository was archived by the owner on Dec 20, 2023. It is now read-only.
The requirements.txt in my app root only contains the line:
-r requirements/foo.txt
So the 'django:onbuild' image doesn't work for me because the Dockerfile only copies the requirements.txt file before running pip install. Could it not be simplified to just:
ONBUILD COPY . /usr/src/app
ONBUILD RUN pip install -r requirements.txt