0
0
Fork 0
salix-front-mindshore-fork2/Dockerfile

7 lines
197 B
Docker
Raw Normal View History

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