refractr/Dockerfile

8 lines
No EOL
98 B
Docker

FROM rust:latest
WORKDIR /usr/src/refractr
COPY . .
RUN cargo install --path .
CMD ["refractr"]