From 7793a2c909b5284d7b260cf44ebcc4e6ccc63585 Mon Sep 17 00:00:00 2001 From: Nicolas Cantu Date: Wed, 27 Aug 2025 15:18:39 +0200 Subject: [PATCH] =?UTF-8?q?chore(release):=20latest=200.1.1=20+=20s=C3=A9c?= =?UTF-8?q?urit=C3=A9/CI/docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 4 ++-- Dockerfile | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 Dockerfile diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d06f47b..24b7265 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -113,9 +113,9 @@ jobs: - name: Setup Docker Buildx uses: docker/setup-buildx-action@v3 - - name: Build step + - name: Build crate Docker image run: | - echo "No Docker images for this repository" + docker build -t sdk_common:build . - name: Run integration tests run: | diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..75ad742 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +# Debian-based Rust builder for library/test +FROM rust:1.70-bookworm AS build +WORKDIR /app +COPY . . +RUN cargo build --release && cargo test --release