You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
399 B
12 lines
399 B
2 years ago
|
FROM node:14-alpine AS builder
|
||
|
ADD . /vue
|
||
|
WORKDIR /vue
|
||
|
RUN mv -f src/views/login/index.vue.tensuns src/views/login/index.vue && \
|
||
|
mv -f src/settings.js.tensuns src/settings.js && \
|
||
|
npm install --registry=https://registry.npm.taobao.org && npm run build:prod
|
||
|
|
||
|
FROM nginx:stable-alpine
|
||
|
WORKDIR /www
|
||
|
COPY --from=builder /vue/http-ops.conf /etc/nginx/conf.d/
|
||
|
COPY --from=builder /vue/dist dist/
|