From 65939ede771ed098870d51c8eba6e3346738e17c Mon Sep 17 00:00:00 2001 From: khorshuheng Date: Fri, 24 Jan 2025 12:20:04 +0800 Subject: [PATCH] chore: add curl to appflowy cloud image to prepare for health check change --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 42c12d1a..e509fe47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,12 +33,12 @@ RUN cargo build --profile=${PROFILE} --features "${FEATURES}" --bin appflowy_clo FROM debian:bookworm-slim AS runtime WORKDIR /app RUN apt-get update -y \ - && apt-get install -y --no-install-recommends openssl ca-certificates \ - && update-ca-certificates \ - # Clean up - && apt-get autoremove -y \ - && apt-get clean -y \ - && rm -rf /var/lib/apt/lists/* + && apt-get install -y --no-install-recommends openssl ca-certificates curl \ + && update-ca-certificates \ + # Clean up + && apt-get autoremove -y \ + && apt-get clean -y \ + && rm -rf /var/lib/apt/lists/* COPY --from=builder /app/target/release/appflowy_cloud /usr/local/bin/appflowy_cloud ENV APP_ENVIRONMENT production