Files
configotron/Dockerfile.test
AlexanderHD27 bea5076295
All checks were successful
Test Rust / test (push) Successful in 1m17s
Added test container
2025-06-09 21:36:57 +02:00

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"]