Dockerfile: Fix COPY Cargo.*

This commit is contained in:
Viyurz 2024-02-25 14:14:38 +01:00
parent 6e56cd61f7
commit acf536b232

View file

@ -10,7 +10,7 @@ RUN cargo new homepage
WORKDIR /usr/src/homepage
COPY Cargo.* .
COPY Cargo.* ./
# Dummy build to cache dependencies
RUN cargo build --release