Files
ImageApi/Dockerfile.ci
Cameron Cordes 44f9bcedbd
Some checks failed
Core Repos/ImageApi/pipeline/pr-master There was a failure building this commit
Set User to fix permission issue
2021-12-24 11:02:34 -05:00

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/