mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-09-23 09:02:27 +00:00
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 <[email protected]>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user