From fd30a32d544a693c8f6235bfa33f37b810040a2b Mon Sep 17 00:00:00 2001 From: Jetsung Chan Date: Wed, 11 Dec 2024 03:01:02 +0800 Subject: [PATCH] fix: can't use it in alpine --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 450cf57..2607daa 100644 --- a/Containerfile +++ b/Containerfile @@ -6,7 +6,7 @@ RUN cargo install --path . FROM debian:bullseye-slim LABEL maintainer="Jetsung Chan" -RUN apt update && apt install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY --from=builder /usr/local/cargo/bin/filetas /usr/local/bin/filetas