Files
anubis-mirror/docs/Dockerfile
2025-07-09 19:57:41 +00:00

10 lines
227 B
Docker

FROM docker.io/library/node AS build
WORKDIR /app
COPY . .
RUN npm ci && npm run build
FROM ghcr.io/xe/nginx-micro
COPY --from=build /app/build /www
LABEL org.opencontainers.image.source="https://github.com/TecharoHQ/anubis"