feat(dscp): initial commit
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user