32 lines
1000 B
Docker
Executable File
32 lines
1000 B
Docker
Executable File
#Building main conteiner
|
|
FROM python:alpine
|
|
|
|
RUN apk update
|
|
RUN apk add g++ git pcre2-dev libnetfilter_queue-dev libpcap-dev libcrypto1.1 libnfnetlink-dev libmnl-dev make cmake nftables
|
|
|
|
WORKDIR /tmp/
|
|
RUN git clone --single-branch --branch release https://github.com/jpcre2/jpcre2
|
|
RUN git clone --single-branch https://github.com/mfontanini/libtins.git
|
|
WORKDIR /tmp/jpcre2
|
|
RUN ./configure; make; make install
|
|
WORKDIR /tmp/libtins
|
|
RUN mkdir build; cd build; cmake ../ -DLIBTINS_ENABLE_CXX11=1; make; make install
|
|
|
|
|
|
RUN mkdir -p /execute/modules
|
|
WORKDIR /execute
|
|
|
|
COPY ./backend/nfqueue /execute/nfqueue
|
|
|
|
RUN g++ nfqueue/nfqueue.cpp -o modules/cppqueue -std=c++20 -O3 -march=native -lnetfilter_queue -pthread -lpcre2-8 -ltins -lmnl -lnfnetlink
|
|
|
|
ADD ./backend/requirements.txt /execute/requirements.txt
|
|
RUN pip3 install --no-cache-dir -r /execute/requirements.txt
|
|
|
|
COPY ./backend/ /execute/
|
|
COPY ./frontend/build/ ./frontend/
|
|
|
|
ENTRYPOINT ["python3", "app.py", "DOCKER"]
|
|
|
|
|