Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM docker.io/library/alpine:latest@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412 AS builder

RUN apk add --no-cache curl jq zstd tar
RUN apk add --no-cache curl jq zstd tar coreutils

ENV URL="https://api.github.com/repos/ublue-os/artwork/releases"

Expand All @@ -15,8 +15,10 @@ RUN set -xeuo pipefail && \
mv kde/ /output/usr/share/backgrounds/aurora/ && \
cd /output/usr/share/backgrounds && \
for dir in aurora/*; do \
ln -s "../backgrounds/${dir}" ../wallpapers/; \
ln -sr "/output/usr/share/backgrounds/${dir}" /output/usr/share/wallpapers/; \
done && \
ln -sr /output/usr/share/backgrounds/aurora/aurowa-wallpaper-6/ /output/usr/share/backgrounds/aurora/aurora-wallpaper-1 && \
ln -sr /output/usr/share/backgrounds/aurora/aurora-wallpaper-1/ /output/usr/share/wallpapers/ && \
rm -rf /tmp/aurora-wallpapers.tar.zstd /tmp/aurora-wallpapers

FROM scratch AS ctx
Expand Down