FROM node:stretch-slim
RUN curl -fsSL https://bun.sh/install | bash
RUN bun install -g @quasar/cli
WORKDIR /app
COPY dist/spa ./
CMD ["quasar", "serve", "./", "--history", "--hostname", "0.0.0.0"]