File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ FROM --platform=$TARGETARCH base AS compiler
25
25
26
26
RUN dnf -y update && dnf install -y python3.13-devel @development-tools gcc-c++ \
27
27
libnetfilter_queue-devel libnfnetlink-devel libmnl-devel libcap-ng-utils nftables \
28
- vectorscan-devel libtins-devel python3-nftables libpcap-devel boost-devel uv git
28
+ vectorscan-devel libtins-devel python3-nftables libpcap-devel boost-devel
29
29
30
30
COPY ./backend/binsrc /execute/binsrc
31
31
RUN g++ binsrc/nfregex.cpp -o cppregex -std=c++23 -O3 -lnetfilter_queue -pthread -lnfnetlink $(pkg-config --cflags --libs libtins libhs libmnl)
@@ -37,13 +37,13 @@ FROM --platform=$TARGETARCH base AS final
37
37
ADD ./backend/requirements.txt /execute/requirements.txt
38
38
COPY ./fgex-lib /execute/fgex-lib
39
39
40
- RUN dnf install -y gcc-c++ python3.13-devel &&\
40
+ RUN dnf install -y gcc-c++ python3.13-devel uv git &&\
41
41
git clone https://github.com/domysh/brotli &&\
42
42
cd brotli && uv pip install --no-cache --system . &&\
43
43
cd .. && rm -rf brotli &&\
44
44
uv pip install --no-cache --system -r /execute/requirements.txt &&\
45
45
uv pip install --no-cache --system ./fgex-lib &&\
46
- dnf remove -y gcc-c++ python3.13-devel
46
+ dnf remove -y gcc-c++ python3.13-devel uv git
47
47
48
48
COPY ./backend/ /execute/
49
49
COPY --from=compiler /execute/cppregex /execute/cpproxy /execute/modules/
You can’t perform that action at this time.
0 commit comments