Fix caching issue

This commit is contained in:
Valentin Brandl 2019-08-09 14:40:26 +02:00
parent 13077eb5cd
commit 16a5ac7553
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -29,7 +29,7 @@ WORKDIR /home/rust/src/gitache
RUN cargo build --release
# delete build cache to prevent caching issues later on
RUN rm -r ./target/x86_64-unknown-linux-musl/release/.fingerprint/gitache-*
RUN rm -r ../time-cache/target/x86_64-unknown-linux-musl/release/.fingerprint/time_cache-*
RUN rm -r ./target/x86_64-unknown-linux-musl/release/.fingerprint/time-cache-*
COPY ./backend/static ./static
COPY ./backend/src ./src