Some checks failed
Core Repos/ImageApi/pipeline/pr-master There was a failure building this commit
5 lines
105 B
Docker
5 lines
105 B
Docker
FROM rust:1.55
|
|
COPY Cargo.toml .
|
|
RUN echo "fn main() {}" > ./src/main.rs && cargo fetch
|
|
COPY src/ ./src/
|