From 611742848f42c97c9275f7e3347c27b3eadd8d9d Mon Sep 17 00:00:00 2001 From: andrea Date: Thu, 8 May 2025 08:21:35 +0000 Subject: [PATCH] fix(ci): add the mii mod --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 451ebac..dfbade0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,11 @@ RUN apk add --no-cache musl-dev openssl-dev openssl-libs-static protobuf-dev lld WORKDIR /app # this optimizes build time by putting the dependencies in a seperate docker layer, speeding up future builds +RUN mkdir mii COPY Cargo.toml Cargo.lock ./ +COPY mii/Cargo.toml mii/Cargo.lock ./mii RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo fetch +RUN mkdir mii/src && echo "fn main() {}" > mii/src/main.rs && cargo fetch COPY . .