fix: clarify ostree container commit must be used (#4)
* fix: clarify ostree container commit must be used after each RUN * chore: use a bash script and simplify Containerfile --------- Co-authored-by: Benjamin Sherman <benjamin@holyarmy.org>
This commit is contained in:
parent
44ec67ffc5
commit
bb583f32d0
2 changed files with 38 additions and 37 deletions
|
@ -44,42 +44,16 @@ ARG FEDORA_VERSION="39"
|
||||||
FROM ghcr.io/ublue-os/${SOURCE_IMAGE}${SOURCE_SUFFIX}:${FEDORA_VERSION}
|
FROM ghcr.io/ublue-os/${SOURCE_IMAGE}${SOURCE_SUFFIX}:${FEDORA_VERSION}
|
||||||
|
|
||||||
|
|
||||||
### 3. PRE-MODIFICATIONS
|
### 3. MODIFICATIONS
|
||||||
## This section is meant for any modifications to the image before the main modifications are made.
|
## make modifications desired in your image and install packages by modifying the build.sh script
|
||||||
|
## the following RUN directive does all the things required to run "build.sh" as recommended.
|
||||||
|
|
||||||
## this directory is needed to prevent failure with some RPM installs
|
COPY build.sh /tmp/build.sh
|
||||||
RUN mkdir -p /var/lib/alternatives
|
|
||||||
|
|
||||||
|
RUN mkdir -p /var/lib/alternatives && \
|
||||||
### 4. MODIFICATIONS
|
/tmp/build.sh && \
|
||||||
## make modifications desired in your image and install packages here, a few examples follow
|
ostree container commit
|
||||||
|
## NOTES:
|
||||||
#### Install packages
|
# - /var/lib/alternatives is required to prevent failure with some RPM installs
|
||||||
|
# - All RUN commands must end with ostree container commit
|
||||||
# install a package from standard fedora repo or rpmfusion repo
|
# see: https://coreos.github.io/rpm-ostree/container/#using-ostree-container-commit
|
||||||
# RPMfusion packages are available by default in ublue main images
|
|
||||||
# List of rpmfusion packages can be found here:
|
|
||||||
# https://mirrors.rpmfusion.org/mirrorlist?path=free/fedora/updates/39/x86_64/repoview/index.html&protocol=https&redirect=1
|
|
||||||
RUN rpm-ostree install screen
|
|
||||||
# example package from rpmfusion
|
|
||||||
#RUN rpm-ostree install vlc
|
|
||||||
|
|
||||||
#### Installation of static binaries
|
|
||||||
|
|
||||||
# static binaries can sometimes by added using a COPY directive like these below.
|
|
||||||
COPY --from=cgr.dev/chainguard/kubectl:latest /usr/bin/kubectl /usr/bin/kubectl
|
|
||||||
#COPY --from=docker.io/docker/compose-bin:latest /docker-compose /usr/bin/docker-compose
|
|
||||||
|
|
||||||
#### Change to System Configuration Files
|
|
||||||
|
|
||||||
# modify default timeouts on system to prevent slow reboots from services that won't stop
|
|
||||||
RUN sed -i 's/#DefaultTimeoutStopSec.*/DefaultTimeoutStopSec=15s/' /etc/systemd/user.conf && \
|
|
||||||
sed -i 's/#DefaultTimeoutStopSec.*/DefaultTimeoutStopSec=15s/' /etc/systemd/system.conf
|
|
||||||
|
|
||||||
|
|
||||||
### 5. POST-MODIFICATIONS
|
|
||||||
## these commands leave the image in a clean state after local modifications
|
|
||||||
RUN rm -rf /tmp/* /var/* && \
|
|
||||||
ostree container commit && \
|
|
||||||
mkdir -p /tmp /var/tmp && \
|
|
||||||
chmod 1777 /tmp /var/tmp
|
|
||||||
|
|
27
build.sh
Executable file
27
build.sh
Executable file
|
@ -0,0 +1,27 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -ouex pipefail
|
||||||
|
|
||||||
|
RELEASE="$(rpm -E %fedora)"
|
||||||
|
|
||||||
|
|
||||||
|
### Install packages
|
||||||
|
|
||||||
|
# Packages can be installed from any enabled yum repo on the image.
|
||||||
|
# RPMfusion repos are available by default in ublue main images
|
||||||
|
# List of rpmfusion packages can be found here:
|
||||||
|
# https://mirrors.rpmfusion.org/mirrorlist?path=free/fedora/updates/39/x86_64/repoview/index.html&protocol=https&redirect=1
|
||||||
|
|
||||||
|
# this installs a package from fedora repos
|
||||||
|
rpm-ostree install screen
|
||||||
|
|
||||||
|
# this would install a package from rpmfusion
|
||||||
|
#RUN rpm-ostree install vlc
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Change to System Configuration Files
|
||||||
|
|
||||||
|
# this example modifies default timeouts to prevent slow reboots from services that won't stop
|
||||||
|
sed -i 's/#DefaultTimeoutStopSec.*/DefaultTimeoutStopSec=15s/' /etc/systemd/user.conf
|
||||||
|
sed -i 's/#DefaultTimeoutStopSec.*/DefaultTimeoutStopSec=15s/' /etc/systemd/system.conf
|
Loading…
Reference in a new issue