mirror of
https://github.com/TecharoHQ/anubis.git
synced 2025-09-08 20:29:48 -04:00

* chore: use nginx-micro to make the docs image 13 MB Signed-off-by: Xe Iaso <me@xeiaso.net> * chore: update spelling Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net>
10 lines
227 B
Docker
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" |