12 рядки
294 B
Docker
12 рядки
294 B
Docker
|
FROM node:12 AS builder
|
||
|
WORKDIR /app
|
||
|
ADD package.json /app/
|
||
|
RUN npm install \
|
||
|
--registry=https://registry.npm.taobao.org \
|
||
|
--disturl=https://npm.taobao.org/dist
|
||
|
ADD . /app
|
||
|
RUN npm run build:prod
|
||
|
|
||
|
FROM busybox
|
||
|
LABEL maintainer thomas.hairong@gmail.com
|
||
|
COPY --from=builder /app/dist /html
|