1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00
vue-element-admin/Dockerfile
Edwin Betancourt e7c2b6c453
Change docker image using alpine version
Change docker image from node:12 to node:12-alpine
2020-08-27 11:04:52 -04:00

18 lines
343 B
Docker

FROM node:12-alpine
# Create app directory
WORKDIR /usr/app
# Copy project files
COPY . ./
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
RUN npm install \
&& npm run build:prod
# Build state files
# Start builded application
CMD npm run preview