diff --git a/src/lightcone/cli/commands.py b/src/lightcone/cli/commands.py index c187071..869faf8 100644 --- a/src/lightcone/cli/commands.py +++ b/src/lightcone/cli/commands.py @@ -313,6 +313,12 @@ def init( WORKDIR /app COPY requirements.txt . + +# Install curl and certificates, then clean up to keep image size small +RUN apt-get update && \ + apt-get install -y --no-install-recommends curl ca-certificates && \ + rm -rf /var/lib/apt/lists/* + # Install uv RUN curl -LsSf https://astral.sh/uv/install.sh | sh ENV PATH="/root/.local/bin:$PATH"