fix: added -y flag for apt-get install
All checks were successful
Build and publish "Python 3 on Bookworm" image / Build and publish (push) Successful in 18s
Build and publish "Rust on Bookworm" image / Build and publish (push) Successful in 56s

Signed-off-by: Louis Vallat <contact@louis-vallat.dev>
This commit is contained in:
Louis Vallat 2024-09-08 00:11:49 +02:00
parent 8b65127635
commit 4778c14ee2
Signed by: louis
SSH Key Fingerprint: SHA256:usb9EA8eIADT+Bt0Ne8ZkISCbgPSOYkVgS2iZqdZj8s

View File

@ -3,6 +3,6 @@ FROM node:20-bookworm@sha256:48db4f6ea21d134be744207225753a1730c4bc1b4cdf836d445
ENV PATH="/root/.cargo/bin:$PATH"
RUN apt-get update && \
apt-get install git && \
apt-get install git -y && \
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
rm -rf /var/lib/apt/lists/*