我正在尝试在Gitlab中设置执行以下操作的基本管道: 运行tests命令,编译客户端,然后使用docker-compose部署应用程序。
当我尝试使用npm install
时出现问题。
我的.gitlab-ci.yml
文件如下:
# This file is a template, and might need editing before it works on your
project.
# Official docker image.
image: docker:latest
services:
- docker:dind
stages:
- test
- build
- deploy
build:
stage: build
script:
- cd packages/public/client/
- npm install --only=production
- npm run build
test:
stage: test
only:
- develop
- production
script:
- echo run tests in this section
step-deploy-production:
stage: deploy
only:
- production
script:
- docker-compose up -d --build
environment: production
when: manual
错误是:
Skipping Git submodules setup
$ cd packages/public/client/
$ npm install --only=production
bash: line 69: npm: command not found
ERROR: Job failed: exit status 1
我正在使用最后一个docker映像,所以我想知道是否可以在构建阶段定义新服务,还是在整个过程中使用不同的映像?
谢谢
答案 0 :(得分:1)
一项新服务will not help you,您需要使用其他图像。
您可以像这样在build
阶段使用节点图像:
build:
image: node:8
stage: build
script:
- cd packages/public/client/
- npm install --only=production
- npm run build