mirror of
https://github.com/toradex/rt-validation.git
synced 2025-09-17 23:48:36 +00:00
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=3-bookworm
|
|
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"]
|