Build from Dockerfile to improve caching #18

Open
cameron wants to merge 6 commits from feature/improve-build-time into master
Showing only changes of commit 44f9bcedbd - Show all commits

View File

@@ -1,4 +1,5 @@
FROM rust:1.55
USER 1000:999
COPY Cargo.toml .
RUN mkdir ./src && echo "fn main() {}" > ./src/main.rs && cargo fetch
COPY src/ ./src/