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.
14 lines
411 B
14 lines
411 B
#1、基于镜像node,版本自己查看上面的链接
|
|
FROM node:10.15.3
|
|
RUN mkdir -p /nuxt
|
|
#6、复制当前的内容到容器内容部目录blog
|
|
# COPY . /blogNuxt
|
|
#7、切换工作目录到blog
|
|
# WORKDIR /blogNuxt
|
|
#8、暴露端口3000,默认端口
|
|
# EXPOSE 3000
|
|
#9、配置npm的远程仓库
|
|
RUN npm config set registry https://registry.npmmirror.com
|
|
# RUN npm install
|
|
#13、start
|
|
CMD ["npm", "start"]
|
|
|