-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
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
docker build is broken #2071
Comments
Hmm, it's failing on the build step which is actually Alpine 3.18 (because that's what It looks like the problem is that
But according to the repository I guess if the |
The base golang image ships with some packages pre-installed, but they're not necessarily the latest. If we try to add a package that (transitively) depends on one of the existing ones, it'll fail if it's expecting a newer version. To address this, simply `apk upgrade` before trying to `apk add`. Closes ergochat#2071
The base golang image ships with some packages pre-installed, but they're not necessarily the latest. If we try to add a package that (transitively) depends on one of the existing ones, it'll fail if it's expecting a newer version. To address this, simply `apk upgrade` before trying to `apk add`. Closes ergochat#2071
Thanks so much! I remember now that we cannot safely upgrade beyond 3.13 for the actual production image, because of the faccessat2(2) issue: #1726 |
https://github.com/ergochat/ergo/actions/runs/5154767068/jobs/9283612607
I think this is because Alpine 3.13 is EOL? @csmith would you have time to take a look at this? If not I can probably get to it soon.
The text was updated successfully, but these errors were encountered: