rust-task-queue 0.1.1

A high-performance, Redis-backed task queue framework with auto-scaling capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:1.87

ENV RUST_BACKTRACE=full

RUN groupadd -g 1000 app
RUN useradd -u 1000 -ms /bin/bash -g app app

USER app

WORKDIR /app

RUN cargo install watchexec-cli