fix: Set right rust version
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
hexlocation pc 2024-07-12 23:51:44 +02:00
parent c61dadef0b
commit dcbcb1636c

View file

@ -1,9 +1,10 @@
FROM rust:1.19 as compile
FROM rust:1.79 as compile
WORKDIR /build
COPY . .
RUN rm -Rf /build/Cargo.lock
RUN cargo update
RUN cargo build --release
FROM gcr.io/distroless/static-debian12