We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e507b6e commit 03b959eCopy full SHA for 03b959e
1 file changed
Dockerfile
@@ -6,7 +6,9 @@ RUN apt update && apt install -y clang-16
6
RUN ln -sf /usr/bin/clang-16 /usr/bin/clang && ln -sf /usr/bin/clang++-16 /usr/bin/clang++
7
RUN git clone https://github.com/alliedmodders/ambuild
8
RUN cd ambuild && python setup.py install && cd ..
9
-RUN git clone --recurse-submodules -b k/sourcehook_alternative https://github.com/alliedmodders/metamod-source
+RUN git clone -b k/sourcehook_alternative https://github.com/alliedmodders/metamod-source
10
+# no recursive submodules, steamrt3 doesn't support ssh checkout
11
+RUN cd metamod-source && git submodule update --init && cd ..
12
RUN git config --global --add safe.directory /app
13
14
COPY ./docker-entrypoint.sh ./
0 commit comments