mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-01 20:23:39 +00:00
17 lines
246 B
Go
17 lines
246 B
Go
|
FROM node:alpine as builder
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY package.json /app/
|
||
|
|
||
|
RUN npm i --registry=https://registry.npm.taobao.org \
|
||
|
&& rm -rf ~/.npm
|
||
|
|
||
|
COPY src /app/src
|
||
|
|
||
|
RUN npm run build
|
||
|
|
||
|
FROM nginx:alpine
|
||
|
|
||
|
COPY --from=builder /app/dist /app/dist
|