mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 22:43:03 +00:00
6 lines
167 B
Docker
6 lines
167 B
Docker
FROM rustlang/rust:nightly-slim
|
|
COPY . .
|
|
RUN apt-get -y update && apt-get -y install pkg-config libssl-dev
|
|
RUN cargo install --root / --path .
|
|
CMD ["/bin/fa-watcher"]
|