summaryrefslogtreecommitdiffstats
path: root/test/test_mtu.py
AgeCommit message (Expand)AuthorFilesLines
2018-09-27IPIP and IPv6 fragmentationOle Troan1-3/+3
2018-09-11GBP Endpoint UpdatesNeale Ranns1-1/+2
2018-06-14MTU: IP fragmentation added to ip4-rewrite and ip6-rewriteOle Troan1-4/+3
2018-06-11MTU: Software interface / Per-protocol MTU supportOle Troan1-18/+8
2018-05-23VPP-1283: IPv6 PMTU missing MTU value in ICMP6 message.Ole Troan1-5/+11
2018-05-23VPP-1283: IPv4 PMTU missing MTU value in ICMP4 message.Ole Troan1-0/+212
sit.infra.dash/Dockerfile'>
path: root/csit.infra.dash/Dockerfile
blob: 8ed06337994835aaa8dcce2a4e574c3f96ea165c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
ARG PYTHON_VERSION=3.8
FROM python:${PYTHON_VERSION}-buster

WORKDIR /var/app/current

COPY ./app/requirements.txt .

RUN pip3 install -r requirements.txt

EXPOSE 5000

CMD [ "uwsgi", "app.ini" ]