We're a place where coders share, stay up-to-date and grow their careers.
I learned that if you inline
apt-get update -y && apt-get install -y ...
in your docker build script, you may miss these errors
E: Release file for ... is not valid yet (invalid for another 22h 2min 28s). Updates for this repository will not be applied.
Which leads to other potential other issues.
So from now on, I'll put them on a separate lines.
apt-get update -y apt-get install -y ...
I learned that if you inline
in your docker build script, you may miss these errors
E: Release file for ... is not valid yet (invalid for another 22h 2min 28s). Updates for this repository will not be applied.
Which leads to other potential other issues.
So from now on, I'll put them on a separate lines.