Skip to content

Commit

Permalink
Merge pull request #1193 from AppFlowy-IO/add-curl-for-appflowy-cloud…
Browse files Browse the repository at this point in the history
…-image

chore: add curl to appflowy cloud image
  • Loading branch information
khorshuheng authored Jan 24, 2025
2 parents 5501fe3 + 65939ed commit ea1285f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ea1285f

Please sign in to comment.