You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FROM linuxserver/znc:latest
|
|
|
|
|
|
|
|
# From ZNC 1.8 Q is retired: https://wiki.znc.in/Q
|
|
|
|
# Modules: https://wiki.znc.in/Modules
|
|
|
|
# How compile modules: https://wiki.znc.in/Compiling_modules
|
|
|
|
# The lastest linuxserver image with Q integrated si `amd64-znc-1.7.5-ls35`
|
|
|
|
# So we need to compile it for ourserlves
|
|
|
|
|
|
|
|
RUN wget https://raw.githubusercontent.com/znc/znc/8d309bbb3dc6bef558a2ffe4f523a0467dda8057/modules/q.cpp && \
|
|
|
|
apk add --no-cache g++ openssl-dev icu-dev tcl-dev python3 make cmake && \
|
|
|
|
znc-buildmod q.cpp && \
|
|
|
|
rm q.cpp && \
|
|
|
|
mv q.so /usr/local/lib/znc/q.so
|
|
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
proxychains-ng
|
|
|
|
|
|
|
|
COPY root/ /
|