fix: some small bugs

This commit is contained in:
Jef Roosens 2025-01-01 21:49:56 +01:00
parent 6610442bf1
commit 1203a34f8f
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
3 changed files with 14 additions and 5 deletions

View file

@ -13,9 +13,13 @@ RUN wget -O - "https://github.com/Yelp/dumb-init/archive/refs/tags/v${DI_VER}.ta
mv dumb-init .. && \
cd ..
COPY Cargo.toml Cargo.lock ./
RUN cargo fetch --locked
COPY . ./
RUN cargo build --release
RUN cargo build --release --frozen
FROM alpine:3.21