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
Expected behavior
The build command should complete without error
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
OS: mac 11.6.5
Docker Version 20.10.11, build dea9396
Additional context
The Dockerfile instructions are incorrect.
This line: RUN pip install --no-cache-dir -r requirements.txt
should be: RUN pip install --no-cache-dir -r flask-app/requirements.txt
to correctly reference the requirements.txt file
The text was updated successfully, but these errors were encountered:
Describe the bug
When running the command
docker build -t jseidel/catnip .
get the errorTo Reproduce
Steps to reproduce the behavior:
docker build -t jseidel/catnip .
Expected behavior
The build command should complete without error
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Additional context
The Dockerfile instructions are incorrect.
This line:
RUN pip install --no-cache-dir -r requirements.txt
should be:
RUN pip install --no-cache-dir -r flask-app/requirements.txt
to correctly reference the requirements.txt file
The text was updated successfully, but these errors were encountered: