blob: 04e66da03c653a180a400f57c4974ea45a586d1f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
ARG DISTRO=xenial
FROM ubuntu:$DISTRO
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends ca-certificates git make
RUN git config --global --add safe.directory /src
COPY [".", "/src"]
WORKDIR /src
CMD ["make", "test/local", "test/linux-home"]
|