Merge pull request #243 from ViniciusCruzMoura/fix_dockerfile_parse
Some checks are pending
CI / build (push) Waiting to run
CI / deploy (push) Blocked by required conditions
Build (Linux, x86_64) / build-linux (push) Waiting to run
Build (Linux, x86_64) / build-linux-debug (push) Waiting to run
Clang Format / clang-format (push) Waiting to run

Fix Missing Backslash in Dockerfile
This commit is contained in:
ThePixelMoon 2026-03-15 10:22:54 +02:00 committed by GitHub
commit b233af47cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,10 +15,10 @@ RUN apt-get update \
libsdl2-dev \
libgl-dev \
libglu1-mesa-dev \
libpthread-stubs0-dev
libpthread-stubs0-dev \
# Clean up lol
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
ENV DEBIAN_FRONTEND=dialog
ENV DEBIAN_FRONTEND=dialog