This repository has been archived on 2025-02-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
node-apt/example.Dockerfile

8 lines
330 B
Docker

FROM debian:latest
ARG DEBIAN_FRONTEND="noninteractive"
RUN apt update && \
cd /tmp && mkdir debs && cd debs && \
apt-cache depends --recurse --no-recommends --no-suggests --no-conflicts --no-breaks --no-replaces --no-enhances curl wget | grep "^\w" | sort -u | xargs apt download
FROM scratch
COPY --from=0 /tmp/debs/*.deb /