]> git.localhorst.tv Git - blank.git/blobdiff - scripts/docker/ubuntu-run-devel/Dockerfile
git is a "runtime" dependency
[blank.git] / scripts / docker / ubuntu-run-devel / Dockerfile
index e5f0c01199fd3eb87c9a4e9e41045bfce5aee576..f8cd309e4cd18b43a95056cfe3f326c82145dd97 100644 (file)
@@ -3,6 +3,7 @@ FROM ubuntu:devel
 RUN apt -y update \
        && apt -y upgrade \
        && apt -y install --no-install-recommends \
+               git \
                make \
                xauth \
                xvfb \
@@ -10,16 +11,16 @@ RUN apt -y update \
        ;
 
 
-RUN apt -y install --no-install-recommends make \
-       libalut0 \
-       libglew1.10 \
-       libglu1-mesa \
-       libopenal1 \
-       libsdl2-2.0-0 \
-       libsdl2-image-2.0-0 \
-       libsdl2-net-2.0-0 \
-       libsdl2-ttf-2.0-0 \
-       zlib1g \
+RUN apt -y install --no-install-recommends \
+               libalut0 \
+               libglew1.10 \
+               libglu1-mesa \
+               libopenal1 \
+               libsdl2-2.0-0 \
+               libsdl2-image-2.0-0 \
+               libsdl2-net-2.0-0 \
+               libsdl2-ttf-2.0-0 \
+               zlib1g \
        && apt-get -y clean \
        && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \
        ;