Update vpn proxy routing checks
Some checks failed
Build and Deploy Gateway / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-05-08 16:52:01 +03:00
parent 03885d2e09
commit 71f8e0b84c
2 changed files with 26 additions and 2 deletions

View File

@@ -1,4 +1,10 @@
FROM node:22-bookworm-slim AS ui-build
ARG HTTP_PROXY
ARG HTTPS_PROXY
ARG NO_PROXY
ARG http_proxy
ARG https_proxy
ARG no_proxy
WORKDIR /app
COPY package.json ./
RUN npm install
@@ -8,6 +14,12 @@ RUN npm run build
FROM debian:bookworm-slim
ARG SINGBOX_VERSION=1.12.13
ARG HTTP_PROXY
ARG HTTPS_PROXY
ARG NO_PROXY
ARG http_proxy
ARG https_proxy
ARG no_proxy
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates curl iptables iproute2 nodejs dumb-init \