refactor: remove BuildKit syntax directive and host network flags from Dockerfiles

Remove BuildKit syntax directive and --network=host flags from admin-web, backend, and gateway Dockerfiles to simplify builds and rely on default Docker networking for dependency downloads.
This commit is contained in:
2026-03-18 09:10:39 +01:00
parent d67d25963d
commit 77773493e2
3 changed files with 4 additions and 7 deletions

View File

@@ -1,8 +1,7 @@
## syntax=docker/dockerfile:1.4
FROM node:22-alpine AS builder FROM node:22-alpine AS builder
WORKDIR /app WORKDIR /app
COPY package.json ./ COPY package.json ./
RUN --network=host npm install RUN npm install
COPY . . COPY . .
RUN npm run build RUN npm run build

View File

@@ -1,11 +1,10 @@
## syntax=docker/dockerfile:1.4
FROM golang:1.23-alpine AS builder FROM golang:1.23-alpine AS builder
WORKDIR /src WORKDIR /src
COPY go.mod ./ COPY go.mod ./
COPY go.sum* ./ COPY go.sum* ./
COPY . . COPY . .
RUN --network=host go mod tidy RUN go mod tidy
RUN --network=host go mod download RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux go build -o /out/nexavpn-api ./cmd/api RUN CGO_ENABLED=0 GOOS=linux go build -o /out/nexavpn-api ./cmd/api
FROM alpine:3.21 FROM alpine:3.21

View File

@@ -1,7 +1,6 @@
## syntax=docker/dockerfile:1.4
FROM alpine:3.21 FROM alpine:3.21
RUN --network=host set -eux; \ RUN set -eux; \
printf '%s\n' \ printf '%s\n' \
'https://dl-cdn.alpinelinux.org/alpine/v3.21/main' \ 'https://dl-cdn.alpinelinux.org/alpine/v3.21/main' \
'https://dl-cdn.alpinelinux.org/alpine/v3.21/community' \ 'https://dl-cdn.alpinelinux.org/alpine/v3.21/community' \