ci: add build-args

This commit is contained in:
rzmk 2026-06-23 14:20:23 -04:00
parent 4f4c576d97
commit 1a82620420
2 changed files with 3 additions and 2 deletions

View file

@ -2,6 +2,7 @@ FROM rust:1.96 AS builder
WORKDIR /app
RUN rustup set profile minimal
COPY . .
ARG NAMESPACE
RUN cargo build -p bulk_loader --release
FROM ubuntu:latest