From bb11612513ef7cf5410908114137e60c5231685a Mon Sep 17 00:00:00 2001 From: ViniciusCruzMoura Date: Sun, 15 Mar 2026 02:14:51 -0400 Subject: [PATCH] fix(Dockerfile): add missing backslash the change in commit 52ee114 did not include a backslash after the libpthread-stubs0-dev dependency at the end of the line, which caused a build failure. this fix ensures proper parsing of the dockerfile Signed-off-by: ViniciusCruzMoura --- .devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index ed043dc98..970b2bd6d 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -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 \ No newline at end of file +ENV DEBIAN_FRONTEND=dialog