mirror of
https://github.com/ink-analyzer/ink-analyzer.git
synced 2025-12-23 10:11:52 +00:00
11 lines
205 B
Docker
11 lines
205 B
Docker
# Base image.
|
|
FROM rust:1-slim-bullseye
|
|
|
|
# Create app working directory.
|
|
WORKDIR /app
|
|
|
|
# Copy source code.
|
|
COPY . .
|
|
|
|
# Set `cargo test` as the executable.
|
|
ENTRYPOINT ["/usr/local/cargo/bin/cargo", "test"]
|