gliderlabs / docker-alpine

Alpine Linux Docker image. Win at minimalism!
http://gliderlabs.viewdocs.io/docker-alpine
BSD 2-Clause "Simplified" License
5.71k stars 529 forks source link

gliderlabs.com does not hav a valid DNS, so docker builds with thie base image fail #557

Open michael-niemand opened 3 years ago

michael-niemand commented 3 years ago

the domains DNS does not return anything, so all build involving gliderlabs alpine fail when adding packages like bash using apk.

mgfernan commented 3 years ago

Run through the same problem. Solved it by using a mirror repository for packages in the Dockerfile, before using apk update, like so:

RUN echo http://mirror.yandex.ru/mirrors/alpine/v3.9/main > /etc/apk/repositories; \
 && echo http://mirror.yandex.ru/mirrors/alpine/v3.9/community >> /etc/apk/repositories
michael-niemand commented 3 years ago

Question is, does gliderlabs still exist at all?!