X-Git-Url: http://git.localhorst.tv/?p=blobs.git;a=blobdiff_plain;f=scripts%2Fdocker%2Fdebian-build-latest%2FDockerfile;h=b0cccd65f44a456220d6cb1eb4a416df79fa08b9;hp=79b8fcf5923380dc2ece8e8fe71562b326695e93;hb=9773d2963d63747fa4bfc548c6a7603fabcd865b;hpb=b6e259a227889cc8af26f599bf3b76b6abb6bbd4 diff --git a/scripts/docker/debian-build-latest/Dockerfile b/scripts/docker/debian-build-latest/Dockerfile index 79b8fcf..b0cccd6 100644 --- a/scripts/docker/debian-build-latest/Dockerfile +++ b/scripts/docker/debian-build-latest/Dockerfile @@ -1,7 +1,9 @@ -FROM debian:latest +FROM localhorsttv/debian-run:latest + +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 \ ;