1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

pull back updates from downstream

This commit is contained in:
Jason N. 2024-02-26 08:25:39 -05:00
parent feec50596a
commit c491c02d7c
11 changed files with 286 additions and 139 deletions

25
Dockerfile Normal file
View file

@ -0,0 +1,25 @@
FROM fedora:39
ARG VERSION=39
ENV ARCH="x86_64"
ENV IMAGE_NAME="base-main"
ENV IMAGE_REPO="ghcr.io/ublue-os"
ENV IMAGE_TAG="${VERSION}"
ENV VARIANT="Kinoite"
ENV VERSION="${VERSION}"
ENV WEB_UI="false"
RUN mkdir /build-container-installer
COPY /lorax_templates /build-container-installer
COPY /xorriso /build-container-installer
COPY /Makefile /build-container-installer
COPY /entrypoint.sh /
WORKDIR /build-container-installer
RUN dnf install -y make && make install-deps
VOLUME /build-container-installer/build
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]