build(docker): enable all features in docker images
All checks were successful
Rust / build (push) Successful in 11m6s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 1m8s

Add support for the experimental TUI when using the docker image.
This commit is contained in:
Paul Campbell 2024-08-26 06:51:37 +01:00
parent 48a5ed7a3b
commit 09ff4c3a54

View file

@ -12,7 +12,7 @@ FROM chef AS builder
COPY --from=planner /app/recipe.json recipe.json COPY --from=planner /app/recipe.json recipe.json
RUN cargo chef cook --profile release --recipe-path recipe.json RUN cargo chef cook --profile release --recipe-path recipe.json
COPY . . COPY . .
RUN cargo build --release --bin git-next && \ RUN cargo build --release --bin git-next --all-features && \
strip target/release/git-next strip target/release/git-next
FROM docker.io/debian:stable-20240722-slim AS runtime FROM docker.io/debian:stable-20240722-slim AS runtime