X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fdocker%2Fubuntu-build-devel%2FDockerfile;h=15e0624b052d18038dc0db1a076100923e1c74cd;hb=ae99cb2cdafb6f59ab82e598331ce0951b32bce2;hp=0415f526a1c7ae78fe54400eeb32d5ea1bd3bf18;hpb=1257f99e76493b448bd81dba22e0ecb570aac6a0;p=blank.git diff --git a/scripts/docker/ubuntu-build-devel/Dockerfile b/scripts/docker/ubuntu-build-devel/Dockerfile index 0415f52..15e0624 100644 --- a/scripts/docker/ubuntu-build-devel/Dockerfile +++ b/scripts/docker/ubuntu-build-devel/Dockerfile @@ -1,7 +1,9 @@ -FROM ubuntu:devel +FROM localhorsttv/ubuntu-run:devel + +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 \ ;