We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Received this error:
executor failed running [/bin/sh -c pip install --upgrade pip && pip install --no-cache-dir -r /app/requirements/dev.txt]: exit code: 1
So proposing this Dockerfile update:
FROM python:3.8 ENV PYTHONUNBUFFERED 1 ENV PYTHONDONTWRITEBYTECODE 1 WORKDIR /app/ COPY . /app/ RUN pip install --upgrade pip && pip install --no-cache-dir -r /app/requirements/dev.txt EXPOSE 8000
The text was updated successfully, but these errors were encountered:
Good catch! Fixed in this commit: ded094e
Sorry, something went wrong.
No branches or pull requests
Received this error:
So proposing this Dockerfile update:
The text was updated successfully, but these errors were encountered: