13 lines
415 B
Docker
13 lines
415 B
Docker
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" ] |