salix-front/Dockerfile

5 lines
152 B
Docker
Raw Normal View History

2022-03-30 13:29:20 +00:00
FROM node:stretch-slim
RUN npm install -g @quasar/cli
WORKDIR /app
COPY dist/spa ./
2022-04-01 07:17:54 +00:00
CMD ["quasar", "serve", "./", "--history", "--hostname", "0.0.0.0"]