FROM minio/minio:latest LABEL author="Task Venture Capital GmbH " USER root # MinIO uses a minimal base, install required packages RUN microdnf install -y curl unzip ca-certificates \ && curl -fsSL https://deno.land/install.sh | sh \ && microdnf clean all ENV DENO_INSTALL="/root/.deno" ENV PATH="$DENO_INSTALL/bin:$PATH" # Verify Deno installation RUN deno --version USER minio