Tanya S 7ee9a793ef
Merge master rest traffic to deploy-wakusim (#104)
* fix wakusim hostname

see https://github.com/status-im/infra-misc/pull/388

* chore: update docker compose command in README.md  (#99)

* Using shards, pubsubtopic is deprecated (#102)

* 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

---------

Co-authored-by: Anton Iakimov <yakimant@gmail.com>
Co-authored-by: Ivan FB <128452529+Ivansete-status@users.noreply.github.com>
2025-04-11 09:41:37 +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"]