mirror of
https://github.com/Syfaro/fuzzysearch.git
synced 2024-11-05 14:32:56 +00:00
5773cc03f5
* Update CI. * Bump versions. * Fix dependencies. * Unify tracing and metrics export. * Create service to hash image. * Updates for hashing service. * Fix missing file changes. * Old changes I don't remember. * Update dependencies, improve Docker images. * Use BKApi instead of in-memory tree. * Include health endpoint with metrics. * Avoid some unwraps.
7 lines
286 B
Docker
7 lines
286 B
Docker
FROM debian:buster-slim
|
|
EXPOSE 8080
|
|
ENV METRICS_HOST=0.0.0.0:8080
|
|
RUN apt-get update -y && apt-get install -y openssl ca-certificates && rm -rf /var/lib/apt/lists/*
|
|
COPY ./fuzzysearch-ingest-e621/fuzzysearch-ingest-e621 /bin/fuzzysearch-ingest-e621
|
|
CMD ["/bin/fuzzysearch-ingest-e621"]
|