parent
4d951c6221
commit
af97e38581
@ -0,0 +1,12 @@
|
||||
FROM node:12.13.1
|
||||
WORKDIR /workload
|
||||
|
||||
COPY nuxt.config.js /workload/nuxt.config.js
|
||||
COPY package.json /workload/package.json
|
||||
COPY .nuxt /workload/.nuxt
|
||||
|
||||
RUN npm config set registry https://registry.npm.taobao.org \
|
||||
&& npm install
|
||||
|
||||
EXPOSE 3000
|
||||
CMD npm run start
|
Loading…
Reference in new issue