aboutsummaryrefslogtreecommitdiff
path: root/docs/Dockerfile
blob: 0faa826bf5b44d3a565696f99c36c90277e8e387 (plain)
1
2
3
4
5
6
7
8
9
10
FROM node AS build

WORKDIR /app
COPY . .

RUN npm ci && npm run build

FROM nginx:alpine
COPY --from=build /app/build /usr/share/nginx/html
LABEL org.opencontainers.image.source="https://github.com/TecharoHQ/anubis"