Files
ImageApi/Dockerfile.ci
Cameron Cordes 5a965d766b
Some checks failed
Core Repos/ImageApi/pipeline/pr-master There was a failure building this commit
Update working directory
2021-12-24 11:05:06 -05:00

7 lines
161 B
Docker

FROM rust:1.55
USER 1000:999
WORKDIR /usr/src/image-api
COPY Cargo.toml .
RUN mkdir ./src && echo "fn main() {}" > ./src/main.rs && cargo fetch
COPY src/ ./src/