bsamadi commited on
Commit
aaec0f8
·
1 Parent(s): c032460

Adding curl

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -7,8 +7,9 @@ FROM ghcr.io/quarto-dev/quarto:${QUARTO_VERSION} AS builder
7
  COPY . /app
8
  WORKDIR /app
9
 
10
- # Install pixi
11
  USER root
 
12
  RUN curl -fsSL https://pixi.sh/install.sh | bash
13
  ENV PATH="/root/.pixi/bin:$PATH"
14
 
 
7
  COPY . /app
8
  WORKDIR /app
9
 
10
+ # Install curl and pixi
11
  USER root
12
+ RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
13
  RUN curl -fsSL https://pixi.sh/install.sh | bash
14
  ENV PATH="/root/.pixi/bin:$PATH"
15