This repository has been archived on 2024-03-03. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
adlin/pkg/debug/Dockerfile
Renovate Bot abd5aa3e63
Some checks failed
continuous-integration/drone/push Build is failing
chore(deps): update alpine docker tag to v3.19
2023-12-10 10:01:34 +00:00

15 lines
320 B
Docker

FROM alpine:3.19 AS mirror
RUN mkdir -p /out/etc/apk/ && \
cp /etc/apk/repositories /out/etc/apk/ && \
cp -r /etc/apk/keys /out/etc/apk/keys
RUN apk add --no-cache --initdb -p /out \
dropbear \
iputils
FROM scratch
MAINTAINER Pierre-Olivier Mercier <nemunaire@nemunai.re>
COPY --from=mirror /out/ /