mirror of
https://github.com/toradex/rt-validation.git
synced 2025-08-12 10:41:32 +00:00
- Generate a latency plot PNG file in /tmp/latency-plot.png. - Generate a latency summary file in /tmp/latency-summary.log. Related-to: TOR-1198 Signed-off-by: Ming Liu <ming.liu@toradex.com>
13 lines
321 B
Docker
13 lines
321 B
Docker
ARG IMAGE_ARCH=linux/arm
|
|
# For IMX8 use IMAGE_ARCH=linux/arm64
|
|
ARG IMAGE_TAG=2-bullseye
|
|
FROM --platform=$IMAGE_ARCH torizon/debian:$IMAGE_TAG
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends gnuplot rt-tests \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY rt-tests.sh /rt-tests.sh
|
|
|
|
CMD ["/rt-tests.sh"]
|