Files
ImageApi/Dockerfile.ci
Cameron Cordes 90625e099e
Some checks failed
Core Repos/ImageApi/pipeline/pr-master There was a failure building this commit
Create src directory
2021-12-24 10:45:35 -05:00

5 lines
120 B
Docker

FROM rust:1.55
COPY Cargo.toml .
RUN mkdir ./src && echo "fn main() {}" > ./src/main.rs && cargo fetch
COPY src/ ./src/