mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 02:47:56 +01:00
feat: pull back updates from downstream (#14)
This commit is contained in:
parent
72f665c64a
commit
97b27601f6
14 changed files with 463 additions and 182 deletions
25
Containerfile
Normal file
25
Containerfile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
FROM fedora:39
|
||||
|
||||
ARG VERSION=39
|
||||
|
||||
ENV ARCH="x86_64"
|
||||
ENV IMAGE_NAME="base"
|
||||
ENV IMAGE_REPO="quay.io/fedora-ostree-desktops"
|
||||
ENV IMAGE_TAG="${VERSION}"
|
||||
ENV VARIANT="Server"
|
||||
ENV VERSION="${VERSION}"
|
||||
ENV WEB_UI="false"
|
||||
|
||||
RUN mkdir /build-container-installer
|
||||
COPY /lorax_templates /build-container-installer/lorax_templates
|
||||
COPY /xorriso /build-container-installer/xorriso
|
||||
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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue