mirror of
https://github.com/TecharoHQ/anubis.git
synced 2025-11-29 09:00:21 +08:00
11 lines
No EOL
274 B
Docker
11 lines
No EOL
274 B
Docker
FROM docker.io/library/node:lts AS build
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN npm ci && npm run build
|
|
|
|
FROM ghcr.io/xe/nginx-micro
|
|
COPY --from=build /app/build /www
|
|
COPY ./manifest/cfg/nginx/nginx.conf /conf
|
|
LABEL org.opencontainers.image.source="https://github.com/TecharoHQ/anubis" |