- Déplace les migrations du service `migrate` séparé vers un entrypoint.sh - L'API exécute `sqlx migrate run` au démarrage avant de lancer le binaire - Gestion de la rétrocompatibilité : détecte un schéma pre-sqlx et crée une baseline `_sqlx_migrations` pour éviter les conflits sur les instances existantes - Installe sqlx-cli dans le builder, copie le binaire et les migrations dans l'image finale - Supprime le service `migrate` du docker-compose.yml ; l'indexer dépend maintenant du healthcheck de l'API (qui garantit que les migrations sont appliquées) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
38 lines
1.4 KiB
Docker
38 lines
1.4 KiB
Docker
FROM rust:1-bookworm AS builder
|
|
WORKDIR /app
|
|
|
|
# Install sccache for faster builds
|
|
RUN cargo install sccache --locked
|
|
ENV RUSTC_WRAPPER=sccache
|
|
ENV SCCACHE_DIR=/sccache
|
|
|
|
COPY Cargo.toml ./
|
|
COPY apps/api/Cargo.toml apps/api/Cargo.toml
|
|
COPY apps/indexer/Cargo.toml apps/indexer/Cargo.toml
|
|
COPY crates/core/Cargo.toml crates/core/Cargo.toml
|
|
COPY crates/parsers/Cargo.toml crates/parsers/Cargo.toml
|
|
COPY apps/api/src apps/api/src
|
|
COPY apps/indexer/src apps/indexer/src
|
|
COPY crates/core/src crates/core/src
|
|
COPY crates/parsers/src crates/parsers/src
|
|
|
|
# Build with sccache (cache persisted between builds via Docker cache mount)
|
|
RUN --mount=type=cache,target=/sccache \
|
|
cargo build --release -p api && \
|
|
cargo install sqlx-cli --no-default-features --features postgres --locked
|
|
|
|
FROM debian:bookworm-slim
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates wget unar poppler-utils locales postgresql-client \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
|
|
ENV LANG=en_US.UTF-8
|
|
ENV LC_ALL=en_US.UTF-8
|
|
COPY --from=builder /app/target/release/api /usr/local/bin/api
|
|
COPY --from=builder /usr/local/cargo/bin/sqlx /usr/local/bin/sqlx
|
|
COPY infra/migrations /app/migrations
|
|
COPY apps/api/entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
EXPOSE 7080
|
|
CMD ["/usr/local/bin/entrypoint.sh"]
|