From 09ff4c3a54ee979cbb6a7d9b8c5dcbede44584ec Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Mon, 26 Aug 2024 06:51:37 +0100 Subject: [PATCH] build(docker): enable all features in docker images Add support for the experimental TUI when using the docker image. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bb69bf0..d29db42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ FROM chef AS builder COPY --from=planner /app/recipe.json recipe.json RUN cargo chef cook --profile release --recipe-path recipe.json COPY . . -RUN cargo build --release --bin git-next && \ +RUN cargo build --release --bin git-next --all-features && \ strip target/release/git-next FROM docker.io/debian:stable-20240722-slim AS runtime