mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 14:32:56 +00:00
15ab9563e0
* Initial attempt at a worker to refresh old data. * Build refresh image on non-master branches. * Allow specifying missing batch sizes. * Store more data for deleted submissions. * Add refresh to builds. * Update furaffinity-rs dependency. * Update furaffinity-rs, again. * Update refresh Dockerfile to avoid extra build. * Update faktory dependency. * Update deleted flag migration order.
5 lines
228 B
Docker
5 lines
228 B
Docker
FROM debian:buster-slim
|
|
RUN apt-get update -y && apt-get install -y openssl ca-certificates && rm -rf /var/lib/apt/lists/*
|
|
COPY ./fuzzysearch-refresh/fuzzysearch-refresh /bin/fuzzysearch-refresh
|
|
CMD ["/bin/fuzzysearch-refresh"]
|