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
SOLUTION: The error is because the package gcompat is not available in the Alpine Linux package repository you are using (Alpine 3.9.2).
gcompat was available in older Alpine versions but may not be available in Alpine 3.9.2, which is a relatively older version. You can either update your Docker image to use a newer version of Alpine Linux or modify your Dockerfile to use a different base image that includes gcompat or doesn't require it.
So just replace FROM alpine:3.9.2 with FROM alpine:3.14 and done.
The text was updated successfully, but these errors were encountered:
When I execute
docker build .
I get following errorSOLUTION: The error is because the package
gcompat
is not available in the Alpine Linux package repository you are using (Alpine 3.9.2).gcompat
was available in older Alpine versions but may not be available in Alpine 3.9.2, which is a relatively older version. You can either update your Docker image to use a newer version of Alpine Linux or modify your Dockerfile to use a different base image that includesgcompat
or doesn't require it.So just replace
FROM alpine:3.9.2
withFROM alpine:3.14
and done.The text was updated successfully, but these errors were encountered: