10 lines
125 B
Docker
10 lines
125 B
Docker
# Use the official Rust image as the base
|
|
FROM rust:latest
|
|
|
|
WORKDIR /tester
|
|
|
|
COPY . .
|
|
|
|
RUN cargo fetch
|
|
|
|
CMD ["cargo", "test"] |