wingfoil 6.0.4

graph based stream processing framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM ubuntu:22.04

RUN apt-get update && apt-get install -y libssl3 && rm -rf /var/lib/apt/lists/*

WORKDIR /q
COPY q q.k ./
RUN chmod +x q

ENV QHOME=/q
EXPOSE 5000

CMD ["./q", "-p", "5000"]