blob: 85958861aaaff2e7a040eaa218dd2897e9a035b4 (
plain)
1
2
3
4
5
6
7
|
all:
if [ ! -d anki-sync-server ]; then \
git clone https://github.com/ankicommunity/anki-sync-server; \
else \
cd anki-sync-server && git pull && cd ..; \
fi
docker build -t anki-sync-server:latest .
|