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 install --assume-yes ${PKG} \
&& wget -O /tmp/unrealircd https://www.unrealircd.org/downloads/unrealircd-${VER}.tar.gz
# && tar xvfz /tmp/unrealircd \
# && cd ./unrealircd-${VER}/ \
# && cp /tmp/config.settings /usr/src/ircd/unrealircd-${VER}/config.settings \
# && ./Config -quick \
# && make -j$(nproc) && make install \
# && rm -rf /usr/src/ircd \
# && addgroup -S unreal && adduser -u ${UID} -S unreal -G unreal
&& tar xvfz /tmp/unrealircd \
&& cd ./unrealircd-${VER}/ \
&& cp /tmp/config.settings /usr/src/ircd/unrealircd-${VER}/config.settings \
&& ./Config -quick \
&& make -j$(nproc) && make install \
&& rm -rf /usr/src/ircd \
&& addgroup -S unreal && adduser -u ${UID} -S unreal -G unreal
WORKDIR /ircd
RUN set -x \