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

7 lines
178 B
Docker
Raw Permalink Normal View History

2024-02-21 12:14:04 +00:00
FROM node:stretch-slim
2024-02-26 11:33:06 +00:00
RUN corepack enable pnpm
RUN pnpm 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"]