refractr/Dockerfile

8 lines
98 B
Text
Raw Normal View History

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