FROM node:lts-bookworm-slim AS builder | |
WORKDIR /app | |
COPY . /app | |
RUN npm install | |
RUN npm run build | |
FROM jitesoft/lighttpd AS server | |
WORKDIR /var/www/html | |
COPY --from=builder /app/dist /var/www/html | |
COPY lighttpd.conf /etc/lighttpd/lighttpd.conf | |
EXPOSE 7860 | |
CMD ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"] | |