FROM node:lts AS build
WORKDIR /app
COPY . .
RUN npm i
RUN npm run build

FROM forgejo.neshweb.net/firq/website-serve-docker:latest AS runtime

COPY --from=build /app/dist /public
COPY --from=build /app/serve.json /public/serve.json
RUN rm -r /public/assets/data/

ENV PORT 8081
EXPOSE 8081

CMD [ "serve", "public/", "-p", "8081" ]