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
Step 2/12 : RUN apt-get update && apt-get install -y --no-install-recommends postgresql-client mariadb-client nano && rm -rf /var/lib/apt/lists/* ---> Running in c70bca2c7f04 Get:1 http://deb.debian.org/debian buster InRelease [122 kB] Get:2 http://deb.debian.org/debian buster-updates InRelease [51.9 kB] Get:3 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB] Reading package lists... E: Repository 'http://deb.debian.org/debian buster InRelease' changed its 'Suite' value from 'stable' to 'oldstable' E: Repository 'http://deb.debian.org/debian buster-updates InRelease' changed its 'Suite' value from 'stable-updates' to 'oldstable-updates' E: Repository 'http://security.debian.org/debian-security buster/updates InRelease' changed its 'Suite' value from 'stable' to 'oldstable' The command '/bin/sh -c apt-get update && apt-get install -y --no-install-recommends postgresql-client mariadb-client nano && rm -rf /var/lib/apt/lists/*' returned a non-zero code: 100 ERROR: Job failed: exit code 100
The text was updated successfully, but these errors were encountered:
Fix:
FROM alang/django:2.1-python3 # --allow-releaseinfo-change because buster is now oldstable RUN apt-get update --allow-releaseinfo-change \ && apt-get install -y --no-install-recommends \ postgresql-client \ mariadb-client \ nano \ ruby-foreman \ && rm -rf /var/lib/apt/lists/*
Sorry, something went wrong.
74d6ff5
No branches or pull requests
The text was updated successfully, but these errors were encountered: