anki/Dockerfile

9 lines
181 B
Docker
Raw Normal View History

2024-01-08 15:23:50 +00:00
FROM rust:1
RUN apt-get update
RUN apt-get install -y protobuf-compiler
RUN cargo install --git https://github.com/ankitects/anki.git anki-sync-server
CMD [ "anki-sync-server" ]