fix: Remove Cargo.lock from Dockerfile copy to avoid missing file error
Some checks failed
Lint and Build / Lint (push) Failing after 45s
Lint and Build / Build (push) Has been skipped
Lint and Build / Docker Build (push) Has been skipped

This commit is contained in:
goose 2026-02-22 00:11:43 -03:00
parent d02c348d92
commit 1e9ca98c92
2 changed files with 72 additions and 73 deletions

View file

@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
# Copy Cargo files first for better caching
COPY Cargo.toml Cargo.lock ./
COPY Cargo.toml ./
# Create dummy main.rs for dependency caching
RUN mkdir src && echo 'fn main() {}' > src/main.rs