]> git.localhorst.tv Git - blank.git/blobdiff - scripts/docker/ubuntu-build-devel/Dockerfile
docker image cleanup
[blank.git] / scripts / docker / ubuntu-build-devel / Dockerfile
index 25c9f6f3c44ac68ebeab15ba3bbdd60ce530f4d2..15e0624b052d18038dc0db1a076100923e1c74cd 100644 (file)
@@ -1,8 +1,11 @@
-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 \
        libcppunit-dev \
        libglew-dev \
@@ -13,4 +16,5 @@ RUN apt -y install --no-install-recommends \
        libsdl2-net-dev \
        libsdl2-ttf-dev \
        zlib1g-dev \
+       && apt-get -y clean \
        ;