Adding curl
Browse files- 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 |
|