From 14d6c0522aa40b066452789069b75f11ddf230db Mon Sep 17 00:00:00 2001 From: LucifersCircle Date: Fri, 29 Nov 2024 01:16:28 -0800 Subject: [PATCH] Update Dockerfile apk instead of apt? --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 16c04a3..227d32c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM rust:1.71.0-alpine +FROM rust:latest -# Install git and other necessary dependencies -RUN apt-get update && apt-get install -y git +# Install git and other necessary dependencies using apk (Alpine's package manager) +RUN apk update && apk add --no-cache git # Set the working directory to /build WORKDIR /build