# INBUXA Admin as an image: the built interface and a static server for it. # # The interface is static files and nothing else -- it talks to the mail server # from the browser, never from here -- so this is nginx with a SPA fallback and # no back end of its own. # # It is built here rather than copied from `dist/`, which is committed for the # convenience of people serving the tree directly. An image built from a stale # `dist/` would be a build nobody can reproduce from the commit it claims. FROM docker.io/node:26-alpine AS build WORKDIR /build # The lockfile alone first, so a commit that changes no dependency reuses this # layer instead of resolving the tree again. COPY package.json package-lock.json ./ RUN npm ci COPY . . # The version comes from inbuxa-version.json, which the release commits before # this builds, so there is nothing to pass in here. RUN npm run build FROM docker.io/nginxinc/nginx-unprivileged:1.29-alpine # Unprivileged nginx, which runs as uid 101 and cannot bind 80. 8080 is the # port it listens on and the one to publish. EXPOSE 8080 # Owned by the nginx user (uid 101 in this image), not root: the entrypoint # below rewrites index.html, and cannot if the file is root's. The directory # stays root's, which is why the entrypoint writes through the file rather # than replacing it. COPY --from=build --chown=101:101 /build/dist /usr/share/nginx/html COPY docker/nginx.conf /etc/nginx/conf.d/default.conf COPY --chmod=0755 docker/entrypoint.sh /docker-entrypoint.d/40-api-base-url.sh