Tanya S 640045bd30
Move the rest-traffic logic inside waku-simulator (#103)
* Move the rest-traffic logic inside waku-simulator to be built locally

* Enable timestamp for rest-traffic
2025-04-10 16:00:26 +02:00

11 lines
175 B
Docker

FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT ["python", "./traffic.py"]