mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 22:43:03 +00:00
5 lines
180 B
Docker
5 lines
180 B
Docker
FROM debian:buster-slim
|
|
RUN apt-get update -y && apt-get install -y libssl-dev && rm -rf /var/lib/apt/lists/*
|
|
COPY ./weasyl-watcher /bin/weasyl-watcher
|
|
CMD ["/bin/weasyl-watcher"]
|