Remove proxy args from gateway build
Some checks failed
Build and Deploy Gateway / build-and-deploy (push) Failing after 30s

This commit is contained in:
2026-05-08 17:19:43 +03:00
parent d13eb0a9a4
commit 81bed1513c
2 changed files with 0 additions and 20 deletions

View File

@@ -1,10 +1,4 @@
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
@@ -14,12 +8,6 @@ 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 \