auto/Dockerfile

9 lines
110 B
Docker

# syntax=docker/dockerfile:1
FROM rust:latest
WORKDIR /app
COPY . .
RUN cargo install --path .
CMD ["auto"]