mirror of
https://github.com/logos-messaging/logos-messaging-simulator.git
synced 2026-01-02 14:03:07 +00:00
* Move the rest-traffic logic inside waku-simulator to be built locally * Enable timestamp for rest-traffic
11 lines
175 B
Docker
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"] |