X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=scripts%2Fdocker%2Fdebian-build-testing%2FDockerfile;h=b5a1eb80cc16f19558a42848c7283d103d327a36;hb=ae99cb2cdafb6f59ab82e598331ce0951b32bce2;hp=8b422eaa300474dde66bc821e6bb842ba61578ee;hpb=1257f99e76493b448bd81dba22e0ecb570aac6a0;p=blank.git diff --git a/scripts/docker/debian-build-testing/Dockerfile b/scripts/docker/debian-build-testing/Dockerfile index 8b422ea..b5a1eb8 100644 --- a/scripts/docker/debian-build-testing/Dockerfile +++ b/scripts/docker/debian-build-testing/Dockerfile @@ -1,7 +1,9 @@ -FROM debian:testing +FROM localhorsttv/debian-run:testing + +RUN apt -y install build-essential \ + && apt-get -y clean \ + ; -RUN apt update \ - && apt -y install build-essential RUN apt -y install --no-install-recommends \ cppcheck \ libalut-dev \ @@ -14,4 +16,5 @@ RUN apt -y install --no-install-recommends \ libsdl2-net-dev \ libsdl2-ttf-dev \ zlib1g-dev \ + && apt-get -y clean \ ;