Some checks failed
CI / test-unit (push) Has been cancelled
CI / test-integration (push) Has been cancelled
CI / test-env-virtual (push) Has been cancelled
CI / test-env-nix (push) Has been cancelled
CI / test-e2e (push) Has been cancelled
CI / test-virgin-user (push) Has been cancelled
CI / test-virgin-root (push) Has been cancelled
CI / codesniffer-shellcheck (push) Has been cancelled
CI / codesniffer-ruff (push) Has been cancelled
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / codesniffer-shellcheck (push) Has been cancelled
Mark stable commit / codesniffer-ruff (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
https://chatgpt.com/share/693dcbad-3d30-800f-acfe-22f7263f3e80
56 lines
1.5 KiB
Docker
56 lines
1.5 KiB
Docker
# syntax=docker/dockerfile:1
|
|
|
|
# ------------------------------------------------------------
|
|
# Base image selector — overridden by build args / Makefile
|
|
# ------------------------------------------------------------
|
|
ARG BASE_IMAGE
|
|
|
|
# ============================================================
|
|
# Target: virgin
|
|
# - installs distro deps (incl. make)
|
|
# - no pkgmgr build
|
|
# - no entrypoint
|
|
# ============================================================
|
|
FROM ${BASE_IMAGE} AS virgin
|
|
SHELL ["/bin/bash", "-lc"]
|
|
|
|
RUN echo "BASE_IMAGE=${BASE_IMAGE}" && cat /etc/os-release || true
|
|
|
|
WORKDIR /build
|
|
|
|
# Copy scripts first so dependency installation can be cached
|
|
COPY scripts/installation/ scripts/installation/
|
|
|
|
# Install distro-specific build dependencies (including make)
|
|
RUN bash scripts/installation/dependencies.sh
|
|
|
|
# Virgin default
|
|
CMD ["bash"]
|
|
|
|
|
|
# ============================================================
|
|
# Target: full
|
|
# - inherits from virgin
|
|
# - builds + installs pkgmgr
|
|
# - sets entrypoint + default cmd
|
|
# ============================================================
|
|
FROM virgin AS full
|
|
|
|
WORKDIR /build
|
|
|
|
# Copy full repository for build
|
|
COPY . .
|
|
|
|
# Build and install distro-native package-manager package
|
|
RUN set -euo pipefail; \
|
|
echo "Building and installing package-manager via make install..."; \
|
|
make install; \
|
|
cd /; rm -rf /build
|
|
|
|
# Entry point
|
|
COPY scripts/docker/entry.sh /usr/local/bin/docker-entry.sh
|
|
|
|
WORKDIR /src
|
|
ENTRYPOINT ["/usr/local/bin/docker-entry.sh"]
|
|
CMD ["pkgmgr", "--help"]
|