From 9bc4fe843b8d0e0f39c013db13315d90d4be5bc5 Mon Sep 17 00:00:00 2001 From: Alireza Ahmadi Date: Sat, 3 Jan 2026 23:09:11 +0100 Subject: [PATCH] add nftables to docker image #872 --- Dockerfile | 2 +- Dockerfile.frontend-artifact | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index af97a5f..9c78307 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ FROM --platform=$TARGETPLATFORM alpine LABEL org.opencontainers.image.authors="alireza7@gmail.com" ENV TZ=Asia/Tehran WORKDIR /app -RUN apk add --no-cache --update ca-certificates tzdata +RUN set -ex && apk add --no-cache --upgrade bash tzdata ca-certificates nftables COPY --from=backend-builder /app/sui /app/ COPY entrypoint.sh /app/ ENTRYPOINT [ "./entrypoint.sh" ] \ No newline at end of file diff --git a/Dockerfile.frontend-artifact b/Dockerfile.frontend-artifact index d06e11d..6ec556d 100644 --- a/Dockerfile.frontend-artifact +++ b/Dockerfile.frontend-artifact @@ -29,7 +29,7 @@ FROM --platform=$TARGETPLATFORM alpine LABEL org.opencontainers.image.authors="alireza7@gmail.com" ENV TZ=Asia/Tehran WORKDIR /app -RUN apk add --no-cache --update ca-certificates tzdata +RUN set -ex && apk add --no-cache --upgrade bash tzdata ca-certificates nftables COPY --from=backend-builder /app/sui /app/ COPY entrypoint.sh /app/ ENTRYPOINT [ "./entrypoint.sh" ] \ No newline at end of file