Dockerfile 274 B

1234567891011
  1. FROM docker.io/library/node:lts AS build
  2. WORKDIR /app
  3. COPY . .
  4. RUN npm ci && npm run build
  5. FROM ghcr.io/xe/nginx-micro
  6. COPY --from=build /app/build /www
  7. COPY ./manifest/cfg/nginx/nginx.conf /conf
  8. LABEL org.opencontainers.image.source="https://github.com/TecharoHQ/anubis"