mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-15 17:25:27 +00:00
This should enable s390x support for all package Signed-off-by: Rolf Neugebauer <rolf.neugebauer@gmail.com>
9 lines
209 B
Docker
9 lines
209 B
Docker
FROM linuxkit/alpine:96ad1eb5ec262b4cd0eef574cdc0b225b502d9ee as alpine
|
|
|
|
RUN apk add ca-certificates
|
|
|
|
FROM scratch
|
|
ENTRYPOINT []
|
|
WORKDIR /
|
|
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|