gliderlabs/docker-alpine

Errors when installing python packages using alpine:3.11 tag

cpitstick-argo opened this issue · 1 comments

Docker script:

FROM alpine:3.11

RUN set -x &&
         apk -v --update add --no-cache \
             jq \
             python3 \
             py3-pip \
             curl \
             ca-certificates

Results in

+ apk -v --update add --no-cache jq python3 py3-pip curl ca-certificates
fetch http://dl-cdn.alpinelinux.org/alpine/v3.11/main/x86_64/APKINDEX.tar.gz
WARNING: Ignoring http://dl-cdn.alpinelinux.org/alpine/v3.11/main/x86_64/APKINDEX.tar.gz: temporary error (try again later)
fetch http://dl-cdn.alpinelinux.org/alpine/v3.11/community/x86_64/APKINDEX.tar.gz
WARNING: Ignoring http://dl-cdn.alpinelinux.org/alpine/v3.11/community/x86_64/APKINDEX.tar.gz: temporary error (try again later)
ERROR: unsatisfiable constraints:
  ca-certificates (missing):
    required by: world[ca-certificates]
  curl (missing):
    required by: world[curl]
  jq (missing):
    required by: world[jq]
  py3-pip (missing):
    required by: world[py3-pip]
  python3 (missing):
    required by: world[python3]

However, if I switch the image to 3.11.6, it works fine...

What's going on here? 3.11 used to work, and we'd prefer to keep that tag for image stability purposes.

Actually sorry, didn't realize this isn't the alpine docker main thread. Closing.