fix(Dockerfile): print sys information
Some checks failed
Build / build-amd64 (push) Failing after 32s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Failing after 1m21s

This commit is contained in:
2025-12-05 16:26:02 +01:00
parent 90ac7c8c49
commit 5e16976d26

View File

@@ -3,6 +3,8 @@ FROM docker.io/library/ubuntu:24.04 AS download
ARG DC_VERSION ARG DC_VERSION
RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \ RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \
echo "${NAME}" && \
echo $(uname) && \
apt update --yes && \ apt update --yes && \
apt install --yes curl && \ apt install --yes curl && \
curl \ curl \