We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c737602 commit 83fff03Copy full SHA for 83fff03
Dockerfile.producer
@@ -1,4 +1,5 @@
1
-FROM alpine:3.19.0 as builder
+# ---------- Build stage ----------
2
+FROM alpine:3.22.1 as builder
3
4
WORKDIR /root
5
RUN apk update && \
@@ -25,6 +26,7 @@ COPY nDPId/config.h nDPId
25
26
27
RUN cd nDPId && mkdir build && cd build && cmake .. -DBUILD_NDPI=ON && make
28
29
+# ---------- Runtime stage ----------
30
FROM alpine:3.22.1 as runtime
31
32
ENV MAX_BUFFERED_LINES=1024 \
0 commit comments