Removing Cargo.lock
All checks were successful
Build and Push Docker Image / docker (push) Successful in 7m49s

This commit is contained in:
Connor Johnstone
2025-09-02 12:44:01 -04:00
parent 6ec7bb5422
commit 62cc910e1a

View File

@@ -11,7 +11,7 @@ RUN rustup target add wasm32-unknown-unknown
WORKDIR /app WORKDIR /app
# Copy workspace files to maintain workspace structure # Copy workspace files to maintain workspace structure
COPY Cargo.toml Cargo.lock ./ COPY Cargo.toml ./
COPY calendar-models ./calendar-models COPY calendar-models ./calendar-models
COPY frontend/Cargo.toml ./frontend/ COPY frontend/Cargo.toml ./frontend/
COPY frontend/Trunk.toml ./frontend/ COPY frontend/Trunk.toml ./frontend/
@@ -63,7 +63,7 @@ RUN mkdir -p backend/src && \
echo "fn main() {}" > backend/src/main.rs echo "fn main() {}" > backend/src/main.rs
# Build dependencies (this layer will be cached unless dependencies change) # Build dependencies (this layer will be cached unless dependencies change)
COPY Cargo.toml Cargo.lock ./ COPY Cargo.toml ./
COPY backend/Cargo.toml ./backend/ COPY backend/Cargo.toml ./backend/
RUN cargo build --release RUN cargo build --release