Skip to content

Commit 0a9869d

Browse files
authored
Merge pull request #102 from alexschrod/only-touch-src-rs
Only touch `*.rs` under `src`
2 parents 64fafd0 + a6e27d1 commit 0a9869d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN cargo build --release
3838
RUN rm -rf /tmp/source/src
3939
COPY src /tmp/source/src
4040
COPY migrations /tmp/source/migrations
41-
RUN find -name "*.rs" -exec touch {} \; && cargo build --release
41+
RUN find src -name "*.rs" -exec touch {} \; && cargo build --release
4242

4343
##################
4444
# Output image #

0 commit comments

Comments
 (0)