From c71bfa6a2753c9e9fec51c44e25abacc466cee74 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Sat, 9 Mar 2024 18:44:22 +0100 Subject: [PATCH] Use apt-get instead of apt (#6) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 15149ac..31807bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG BASE_IMAGE=debian:bookworm-slim FROM --platform=$TARGETPLATFORM ubuntu:22.04 AS builder # need to specify the ARG again to make it available in this stage ARG PIXI_VERSION -RUN apt update && apt install -y curl +RUN apt-get update && apt-get install -y curl # download the musl build since the gnu build is not available on aarch64 RUN curl -Ls \ "https://github.com/prefix-dev/pixi/releases/download/v${PIXI_VERSION}/pixi-$(uname -m)-unknown-linux-musl" \