-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcentos-10.dockerfile
More file actions
30 lines (21 loc) · 958 Bytes
/
centos-10.dockerfile
File metadata and controls
30 lines (21 loc) · 958 Bytes
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
FROM quay.io/centos/centos:10
# renovate: datasource=custom.repology depName=gnome-shell packageName=gnome-shell[repo='centos_stream_10']
ARG GNOME_SHELL_VERSION=49.5-1.el10
# renovate: datasource=custom.repology depName=mutter packageName=mutter[repo='centos_stream_10']
ARG MUTTER_VERSION=49.4-4.el10
# renovate: datasource=custom.repology depName=gjs packageName=gjs[repo='centos_stream_10']
ARG GJS_VERSION=1.80.2-11.el10
# renovate: datasource=custom.repology depName=vte packageName=vte[repo='centos_stream_10']
ARG VTE_VERSION=0.78.6-1.el10
COPY scripts/install-fedora.sh /usr/local/bin/
RUN env \
"GNOME_SHELL_VERSION=$GNOME_SHELL_VERSION" \
"MUTTER_VERSION=$MUTTER_VERSION" \
"GJS_VERSION=$GJS_VERSION" \
"VTE_VERSION=$VTE_VERSION" \
/usr/local/bin/install-fedora.sh
COPY data /
COPY scripts/configure-systemd.sh /usr/local/bin/
RUN /usr/local/bin/configure-systemd.sh
ENV XDG_CURRENT_DESKTOP=GNOME
CMD [ "/sbin/init" ]