ink-analyzer/Dockerfile
2023-11-07 07:08:10 +03:00

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