refractr/Dockerfile

9 lines
131 B
Text
Raw Normal View History

2025-03-02 14:39:12 -07:00
FROM rust:slim
WORKDIR /usr/src/refractr
COPY . .
2025-03-02 14:39:12 -07:00
RUN cargo build --release
RUN cargo install --locked --path .
CMD ["refractr"]