File size: 317 Bytes
b070648 ba3bec2 b070648 ba3bec2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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"]
|