]> git.localhorst.tv Git - blank.git/blobdiff - scripts/docker/debian-run-latest/Dockerfile
use printf to echo newlines
[blank.git] / scripts / docker / debian-run-latest / Dockerfile
index 838c84db8171a1ceaebd8194a555d6aeeb3dca6e..e55b338641a588a38d4fba9c8f8c4c446bff44c9 100644 (file)
@@ -3,6 +3,7 @@ FROM debian:latest
 RUN apt -y update \
        && apt -y upgrade \
        && apt -y install --no-install-recommends \
+               git \
                make \
                xauth \
                xvfb \
@@ -20,5 +21,5 @@ RUN apt -y install --no-install-recommends \
                libsdl2-ttf-2.0-0 \
                zlib1g \
        && apt-get -y clean \
-       && echo -e '[general]\ndrivers = null' > /etc/openal/alsoft.conf \
+       && printf '[general]\ndrivers = null\n' > /etc/openal/alsoft.conf \
        ;