This commit is contained in:
shoopea 2025-05-04 13:58:19 +02:00
parent 37caeb55d2
commit 9e1fa7f446

View File

@ -14,13 +14,13 @@ RUN set -x \
&& apt-get update \ && apt-get update \
&& apt-get install --assume-yes ${PKG} \ && apt-get install --assume-yes ${PKG} \
&& wget -O /tmp/unrealircd https://www.unrealircd.org/downloads/unrealircd-${VER}.tar.gz && wget -O /tmp/unrealircd https://www.unrealircd.org/downloads/unrealircd-${VER}.tar.gz
# && tar xvfz /tmp/unrealircd \ && tar xvfz /tmp/unrealircd \
# && cd ./unrealircd-${VER}/ \ && cd ./unrealircd-${VER}/ \
# && cp /tmp/config.settings /usr/src/ircd/unrealircd-${VER}/config.settings \ && cp /tmp/config.settings /usr/src/ircd/unrealircd-${VER}/config.settings \
# && ./Config -quick \ && ./Config -quick \
# && make -j$(nproc) && make install \ && make -j$(nproc) && make install \
# && rm -rf /usr/src/ircd \ && rm -rf /usr/src/ircd \
# && addgroup -S unreal && adduser -u ${UID} -S unreal -G unreal && addgroup -S unreal && adduser -u ${UID} -S unreal -G unreal
WORKDIR /ircd WORKDIR /ircd
RUN set -x \ RUN set -x \