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
2 changes: 1 addition & 1 deletion apps/es-de/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG BASE_APP_IMAGE

# hadolint ignore=DL3006
FROM ${BASE_APP_IMAGE}

Check warning on line 4 in apps/es-de/build/Dockerfile

View workflow job for this annotation

GitHub Actions / emus (es-de, linux/amd64) / docker (linux/amd64)

Default value for global ARG results in an empty or invalid base image name

InvalidDefaultArgInFrom: Default value for ARG ${BASE_APP_IMAGE} results in empty or invalid base image name More info: https://docs.docker.com/go/dockerfile/rule/invalid-default-arg-in-from/

ARG DEBIAN_FRONTEND=noninteractive
# see: https://github.com/AppImage/AppImageKit/wiki/FUSE#docker
Expand All @@ -16,7 +16,7 @@
mkdir -p /tmp && \
cd /tmp && \
curl https://gitlab.com/api/v4/projects/18817634/releases | \
jq '.[0].assets.links[]|select(.name|endswith(".AppImage"))|select(.name|contains("SteamDeck")|not).direct_asset_url' | \
jq -r '.[0].assets.links[]|select(.name=="ES-DE_x64.AppImage").direct_asset_url' | \
xargs wget -O /Applications/esde.AppImage && \
chmod -v -R 777 /Applications/esde.AppImage && \
chmod -v -R a+x /Applications/esde.AppImage
Expand Down
Loading