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