File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ FROM docker.io/library/alpine:edge
2+
3+ # renovate: datasource=custom.repology depName=gnome-shell packageName=gnome-shell[repo='alpine_edge']
4+ ARG GNOME_SHELL_VERSION=50.2-r0
5+
6+ # renovate: datasource=custom.repology depName=mutter packageName=mutter[repo='alpine_edge']
7+ ARG MUTTER_VERSION=50.2-r0
8+
9+ # renovate: datasource=custom.repology depName=gjs packageName=gjs[repo='alpine_edge']
10+ ARG GJS_VERSION=1.88.0-r1
11+
12+ # renovate: datasource=custom.repology depName=vte packageName=vte[repo='alpine_edge']
13+ ARG VTE_VERSION=0.84.0-r2
14+
15+ COPY scripts/install-alpine.sh /usr/local/bin/
16+ RUN env \
17+ "GNOME_SHELL_VERSION=$GNOME_SHELL_VERSION" \
18+ "MUTTER_VERSION=$MUTTER_VERSION" \
19+ "GJS_VERSION=$GJS_VERSION" \
20+ "VTE_VERSION=$VTE_VERSION" \
21+ /usr/local/bin/install-alpine.sh
22+
23+ COPY scripts/configure-openrc.sh /usr/local/bin/
24+ RUN /usr/local/bin/configure-openrc.sh
25+
26+ ENV XDG_CURRENT_DESKTOP=GNOME
27+
28+ CMD [ "/sbin/init" ]
Original file line number Diff line number Diff line change 22
33set -ex
44
5+ . /etc/os-release
6+
7+ if [ " $PRETTY_NAME " = " Alpine Linux edge" ]
8+ then
9+ apk upgrade
10+ fi
11+
512locked_packages="
613 gnome-shell=$GNOME_SHELL_VERSION
714 mutter=$MUTTER_VERSION
You can’t perform that action at this time.
0 commit comments