Update Dockerfile

apk instead of apt?
This commit is contained in:
LucifersCircle 2024-11-29 01:16:28 -08:00
parent 3961d78a02
commit 14d6c0522a

View file

@ -1,7 +1,7 @@
FROM rust:1.71.0-alpine FROM rust:latest
# Install git and other necessary dependencies # Install git and other necessary dependencies using apk (Alpine's package manager)
RUN apt-get update && apt-get install -y git RUN apk update && apk add --no-cache git
# Set the working directory to /build # Set the working directory to /build
WORKDIR /build WORKDIR /build