@@ -13,8 +13,8 @@ COPY ./frontend/ .
1313RUN bun run build
1414
1515# Base fedora container
16- FROM --platform=$TARGETARCH quay.io/fedora/fedora:42 AS base
17- RUN dnf -y update && dnf install -y python3.13 libnetfilter_queue \
16+ FROM --platform=$TARGETARCH quay.io/fedora/fedora:43 AS base
17+ RUN dnf -y update && dnf install -y python3.14 libnetfilter_queue \
1818 libnfnetlink libmnl libcap-ng-utils nftables \
1919 vectorscan libtins python3-nftables libpcap && dnf clean all
2020
@@ -23,24 +23,24 @@ WORKDIR /execute
2323
2424FROM --platform=$TARGETARCH base AS compiler
2525
26- RUN dnf -y update && dnf install -y python3.13 -devel @development-tools gcc-c++ \
26+ RUN dnf -y update && dnf install -y python3.14 -devel @development-tools gcc-c++ \
2727 libnetfilter_queue-devel libnfnetlink-devel libmnl-devel \
2828 vectorscan-devel libtins-devel libpcap-devel boost-devel
2929
3030COPY ./backend/binsrc /execute/binsrc
3131RUN g++ binsrc/nfregex.cpp -o cppregex -std=c++23 -O3 -lnetfilter_queue -pthread -lnfnetlink $(pkg-config --cflags --libs libtins libhs libmnl)
32- RUN g++ binsrc/nfproxy.cpp -o cpproxy -std=c++23 -O3 -lnetfilter_queue -lpython3.13 -pthread -lnfnetlink $(pkg-config --cflags --libs libtins libmnl python3)
32+ RUN g++ binsrc/nfproxy.cpp -o cpproxy -std=c++23 -O3 -lnetfilter_queue -lpython3.14 -pthread -lnfnetlink $(pkg-config --cflags --libs libtins libmnl python3)
3333
3434# Building main conteiner
3535FROM --platform=$TARGETARCH base AS final
3636
3737COPY ./backend/requirements.txt /execute/requirements.txt
3838COPY ./fgex-lib /execute/fgex-lib
3939
40- RUN dnf -y update && dnf install -y gcc-c++ python3.13 -devel uv git &&\
40+ RUN dnf -y update && dnf install -y gcc-c++ python3.14 -devel uv git &&\
4141 uv pip install --no-cache --system ./fgex-lib &&\
4242 uv pip install --no-cache --system -r /execute/requirements.txt &&\
43- uv cache clean && dnf remove -y gcc-c++ python3.13 -devel uv git && dnf clean all
43+ uv cache clean && dnf remove -y gcc-c++ python3.14 -devel uv git && dnf clean all
4444
4545COPY ./backend/ /execute/
4646COPY --from=compiler /execute/cppregex /execute/cpproxy /execute/modules/
0 commit comments