Skip to content

Commit

Permalink
Use apt-get instead of apt
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelzw committed Mar 9, 2024
1 parent 8378635 commit f59711e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down

0 comments on commit f59711e

Please sign in to comment.