mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-08 04:59:18 +01:00
d82d0ba649
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
26 lines
511 B
Docker
26 lines
511 B
Docker
FROM debian:sid
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
ca-certificates \
|
|
gcc \
|
|
git \
|
|
make \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN git clone --depth 1 https://github.com/01org/lkp-tests.git /usr/src/lkp-tests
|
|
|
|
WORKDIR /usr/src/lkp-tests
|
|
|
|
RUN make install \
|
|
&& lkp install
|
|
|
|
# Create the lkp user and group
|
|
RUN groupadd --gid 1090 lkp
|
|
RUN useradd --uid 1090 --gid 1090 lkp
|
|
|
|
COPY run.sh /usr/local/bin/run-bench
|
|
|
|
CMD [ "lkp" ]
|