aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/test/docker/Dockerfile
blob: 04e66da03c653a180a400f57c4974ea45a586d1f (plain) (tree)
1
2
3
4
5
6
7
8
9





                                    
                                                                           

                                                 





                                             
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"]