generated from jim60105/Containerfile-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.Containerfile
161 lines (131 loc) · 5.03 KB
/
base.Containerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# syntax=docker/dockerfile:1
ARG UID=1000
ARG VERSION=EDGE
ARG RELEASE=0
ARG BASE_IMAGE=registry.fedoraproject.org/fedora-toolbox:41
########################################
# Base stage
########################################
FROM ${BASE_IMAGE} AS base
# Set dnf config
RUN cat <<-"EOF" > /etc/dnf/dnf.conf
[main]
install_weak_deps=False
tsflags=nodocs
EOF
########################################
# Font unpack stage
########################################
FROM base AS font-unpacker
WORKDIR /fonts
ADD https://github.com/ButTaiwan/iansui/releases/download/v1.000/iansui.zip /tmp/iansui.zip
ADD https://github.com/ryanoasis/nerd-fonts/releases/download/v3.3.0/Hack.zip /tmp/hack.zip
RUN unzip -uo /tmp/iansui.zip -d /fonts/iansui && \
unzip -uo /tmp/hack.zip -d /fonts/hack
########################################
# Host runner stage
########################################
FROM base AS host-runner
WORKDIR /host-runner
RUN cat <<-"EOF" > /host-runner/host-runner
#!/bin/bash
executable="$(basename ${0})"
exec flatpak-spawn --host "${executable}" "${@}"
EOF
# Setup host-runner script and symlinks
RUN bins=( \
"flatpak" \
"podman" \
"buildah" \
"skopeo" \
"docker" \
"rpm-ostree" \
"systemctl" \
"xdg-open" \
"kitty" \
"waveterm" \
); \
for f in "${bins[@]}"; do \
ln -s host-runner "/host-runner/$f";\
done
########################################
# Final stage
########################################
FROM base AS final
# Create directories with correct permissions
ARG UID
RUN install -d -m 775 -o $UID -g 0 /licenses
# Copy licenses (OpenShift Policy)
COPY --chown=$UID:0 --chmod=775 LICENSE /licenses/Containerfile.LICENSE
# COPY host-runner
COPY --chown=$UID:0 --chmod=775 --from=host-runner /host-runner /usr/local/bin
# RUN mount cache for multi-arch: https://github.com/docker/buildx/issues/549#issuecomment-1788297892
ARG TARGETARCH
ARG TARGETVARIANT
# Make sure the cache is refreshed
ARG RELEASE
# Install utilities
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf -y upgrade && \
dnf -y install \
xdg-utils \
jq \
zsh \
vim
# Install gh-cli
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf config-manager addrepo --from-repofile=https://cli.github.com/packages/rpm/gh-cli.repo && \
dnf -y install gh --repo gh-cli
# Fonts
COPY --chown=$UID:0 --chmod=775 --from=font-unpacker /fonts /usr/local/share/fonts
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf -y install \
google-noto-sans-cjk-fonts \
google-noto-color-emoji-fonts \
cascadia-fonts-all \
hanamin-fonts
# Install os keyring
ENV GCM_CREDENTIAL_STORE=gpg
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf -y install seahorse
# Install development tools (gcc, make, etc.)
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf -y install @development-tools openssl-devel
# Install .NET
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf -y install dotnet-sdk-8.0
# Install Rustup
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf -y install rustup
# Install Java 17 (JetBrains loves this)
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf -y install java-17-openjdk
# Install nodejs
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf -y install nodejs nodejs-npm
# Install git-credential-manager (This needs .NET 8)
RUN curl -L https://aka.ms/gcm/linux-install-source.sh | sh && \
git-credential-manager configure
# Install aria2
RUN --mount=type=cache,id=dnf-$TARGETARCH$TARGETVARIANT,sharing=locked,target=/var/cache/dnf \
dnf -y install aria2
# Copy toolbox runners
COPY --chown=$UID:0 --chmod=775 base/runner /copy-to-host
ARG VERSION
ARG RELEASE
LABEL name="jim60105/toolbx" \
org.opencontainers.image.name="jim60105/toolbx" \
# Authors for toolbox
vendor="Fedora Project" \
# Maintainer for this container image
maintainer="jim60105" \
# Containerfile source repository
url="https://github.com/jim60105/toolbx" \
version=${VERSION} \
# This should be a number, incremented with each change
release=${RELEASE} \
io.k8s.display-name="toolbx" \
summary="toolbx: My Personal Fedora Toolbox (Containerfile)" \
description="Toolbx is a tool for Linux, which allows the use of interactive command line environments for software development and troubleshooting the host operating system, without having to install software on the host. These are my personal Fedora toolbox images, which I use for development and daily usage. For more information about this tool, please visit the following website: https://github.com/jim60105/toolbx" \
license="GPL-3.0" \
org.opencontainers.image.license="GPL-3.0"