fix: separate GHCR and Docker Hub builds

This commit is contained in:
alam00000
2026-01-27 19:19:28 +05:30
parent 9c57adf634
commit 25687fa049
2 changed files with 26 additions and 33 deletions

View File

@@ -3,7 +3,7 @@
ARG BASE_URL=
# Build stage
FROM node:20-alpine AS builder
FROM public.ecr.aws/docker/library/node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
COPY vendor ./vendor
@@ -31,7 +31,7 @@ ENV NODE_OPTIONS="--max-old-space-size=3072"
RUN npm run build:with-docs
# Production stage
FROM nginxinc/nginx-unprivileged:stable-alpine-slim
FROM quay.io/nginx/nginx-unprivileged:stable-alpine-slim
LABEL org.opencontainers.image.source="https://github.com/alam00000/bentopdf"
LABEL org.opencontainers.image.url="https://github.com/alam00000/bentopdf"