From eda2cdbb7ea3b006e1893a69165ffa44bd728129 Mon Sep 17 00:00:00 2001 From: Sahib Bhai Date: Tue, 12 Nov 2024 14:18:57 -0800 Subject: [PATCH] Remove dead code, comment out curl (do i even need this?) --- Dockerfile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9fafcd3a..9de1b1f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,16 +18,7 @@ RUN uv pip install --system --no-cache-dir -r requirements.txt USER nonroot # Install curl -RUN apt-get update && apt-get install -y curl - -# Using uv to install packages because it's fast as fuck boiiii -# https://www.youtube.com/watch?v=6E7ZGCfruaw -# https://ryxcommar.com/2024/02/15/how-to-cut-your-python-docker-builds-in-half-with-uv/ -ADD --chmod=655 https://astral.sh/uv/install.sh /install.sh -RUN /install.sh && rm /install.sh -RUN /root/.cargo/bin/uv pip install --system --no-cache -r requirements.txt - -COPY . ./ +#RUN apt-get update && apt-get install -y curl # Run the app using gunicorn. # Expose the port gunicorn is listening on (80).