-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #130 from rothgar/debian
fix: Actually build debian toolbox from debian
- Loading branch information
Showing
1 changed file
with
24 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,29 @@ | ||
FROM docker.io/library/ubuntu:24.04 | ||
# FROM https://hub.docker.com/_/ubuntu | ||
FROM docker.io/library/debian:bookworm | ||
# FROM https://hub.docker.com/_/debian | ||
|
||
LABEL com.github.containers.toolbox="true" \ | ||
name="ubuntu-toolbox" \ | ||
usage="This image is meant to be used with the toolbox or distrobox command" \ | ||
summary="A cloud-native terminal experience powered by Ubuntu" \ | ||
maintainer="jorge.castro@gmail.com" | ||
name="debian-toolbox" \ | ||
usage="This image is meant to be used with the toolbox or distrobox command" \ | ||
summary="A cloud-native terminal experience powered by Debian" \ | ||
maintainer="justin@linux.com" | ||
|
||
COPY ./toolboxes/ubuntu-toolbox/packages.ubuntu /toolbox-packages | ||
COPY ./toolboxes/debian-toolbox/packages.debian /toolbox-packages | ||
|
||
RUN rm /etc/apt/apt.conf.d/docker-gzip-indexes /etc/apt/apt.conf.d/docker-no-languages && \ | ||
sed -Ei 's/^(hosts:.*)(\<files\>)\s*(.*)/\1\2 myhostname \3/' /etc/nsswitch.conf && \ | ||
apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get -y install \ | ||
ubuntu-minimal ubuntu-standard \ | ||
libnss-myhostname \ | ||
flatpak-xdg-utils \ | ||
$(cat toolbox-packages | xargs) && \ | ||
rm -rd /var/lib/apt/lists/* && \ | ||
rm /toolbox-packages && \ | ||
mkdir /usr/share/empty && \ | ||
userdel --remove ubuntu && \ | ||
curl -sLo /usr/bin/host-spawn https://github.com/1player/host-spawn/releases/download/1.5.0/host-spawn-x86_64 && \ | ||
chmod +x /usr/bin/host-spawn && \ | ||
rm /etc/apt/apt.conf.d/20apt-esm-hook.conf && \ | ||
ln -s /usr/libexec/flatpak-xdg-utils/flatpak-spawn /usr/bin/ && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/docker && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/flatpak && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/podman && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/rpm-ostree && \ | ||
echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers | ||
sed -Ei 's/^(hosts:.*)(\<files\>)\s*(.*)/\1\2 myhostname \3/' /etc/nsswitch.conf && \ | ||
apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get -y install \ | ||
libnss-myhostname \ | ||
flatpak-xdg-utils \ | ||
$(cat toolbox-packages | xargs) && \ | ||
rm -rd /var/lib/apt/lists/* && \ | ||
rm /toolbox-packages && \ | ||
mkdir /usr/share/empty && \ | ||
curl -sLo /usr/bin/host-spawn https://github.com/1player/host-spawn/releases/download/1.5.0/host-spawn-x86_64 && \ | ||
chmod +x /usr/bin/host-spawn && \ | ||
ln -s /usr/libexec/flatpak-xdg-utils/flatpak-spawn /usr/bin/ && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/docker && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/flatpak && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/podman && \ | ||
ln -fs /usr/bin/distrobox-host-exec /usr/local/bin/rpm-ostree && \ | ||
echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers |