feat(dscp): initial commit

This commit is contained in:
Sebastian Rust
2025-01-29 12:13:15 +01:00
commit 3acc8a6318
8 changed files with 194 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM martenseemann/quic-network-simulator-endpoint:latest
# download and build your QUIC implementation
# [ DO WORK HERE ]
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y python3 python3-loguru
RUN ln -s /usr/bin/python3 /usr/bin/python
# copy run script and run it
COPY run_endpoint.sh .
RUN chmod +x run_endpoint.sh
COPY sender.py .
COPY server.py .
ENTRYPOINT [ "./run_endpoint.sh" ]