-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainerfile
More file actions
96 lines (68 loc) · 2.72 KB
/
Copy pathContainerfile
File metadata and controls
96 lines (68 loc) · 2.72 KB
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
FROM scratch as ctx
COPY build_scripts /
FROM ghcr.io/nushell/nushell:latest-alpine as nushell
FROM quay.io/fedora/fedora-bootc:44 as base
COPY --from=nushell /usr/bin/nu /usr/bin/nu
RUN printf '/bin/nu\n/usr/bin/nu' >> /etc/shells
COPY yum-repos/custom.repo /etc/yum.repos.d/custom.repo
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
--mount=type=cache,dst=/var/cache \
--mount=type=cache,dst=/var/lib/dnf \
--mount=type=tmpfs,dst=/var/log \
--mount=type=tmpfs,dst=/tmp \
/ctx/install-base.sh
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
/ctx/clean-base.sh
RUN bootc container lint
FROM quay.io/fedora/fedora-kinoite:44 as desktop
COPY --from=nushell /usr/bin/nu /usr/bin/nu
RUN printf '/bin/nu\n/usr/bin/nu\n' >> /etc/shells
COPY yum-repos/custom.repo /etc/yum.repos.d/custom.repo
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
--mount=type=cache,dst=/var/cache \
--mount=type=cache,dst=/var/lib/dnf \
--mount=type=tmpfs,dst=/var/log \
--mount=type=tmpfs,dst=/tmp \
/ctx/install-base.sh
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
/ctx/clean-base.sh
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
--mount=type=cache,dst=/var/cache \
--mount=type=cache,dst=/var/lib/dnf \
--mount=type=tmpfs,dst=/var/log \
--mount=type=tmpfs,dst=/tmp \
/ctx/install-desktop.sh
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
/ctx/clean-desktop.sh
RUN bootc container lint
FROM quay.io/fedora/fedora-kinoite:43 as laptop
COPY dracut.conf /usr/lib/dracut/dracut.conf.d/50-custom-ostree.conf
COPY --from=nushell /usr/bin/nu /usr/bin/nu
RUN printf '/bin/nu\n/usr/bin/nu\n' >> /etc/shells
COPY yum-repos/custom.repo /etc/yum.repos.d/custom.repo
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
--mount=type=cache,dst=/var/cache \
--mount=type=cache,dst=/var/lib/dnf \
--mount=type=tmpfs,dst=/var/log \
--mount=type=tmpfs,dst=/tmp \
/ctx/install-base.sh
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
/ctx/clean-base.sh
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
--mount=type=cache,dst=/var/cache \
--mount=type=cache,dst=/var/lib/dnf \
--mount=type=tmpfs,dst=/var/log \
--mount=type=tmpfs,dst=/tmp \
/ctx/install-desktop.sh
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
/ctx/clean-desktop.sh
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
--mount=type=cache,dst=/var/cache \
--mount=type=cache,dst=/var/lib/dnf \
--mount=type=cache,dst=/var/lib/rpm-state \
--mount=type=tmpfs,dst=/var/log \
--mount=type=tmpfs,dst=/tmp \
/ctx/install-laptop.sh
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
/ctx/clean-laptop.sh
RUN bootc container lint