我一直在努力解决这个问题已经有一段时间了,但我无法弄清楚(我知道这一定是一件简单的事情)。
目前,我正在尝试从两个存储库中提取(这自然会创建两个单独的目录),然后我试图将文件从一个目录移动到另一个目录以成功执行 Dockerfile。
这是我的 pipeline.yml 文件的样子:
---
jobs:
- name: build-nexus-docker-image
public: false
plan:
- get: git-nexus-docker-images
trigger: true
- get: git-nexus-license
trigger: true
- task: mv-nexus-license
config:
platform: linux
image_resource:
type: docker-image
source: {repository: ubuntu, tag: "trusty"}
inputs:
- name: git-nexus-license
- name: git-nexus-docker-images
run:
path: /bin/sh
args:
- -c
- mv -v git-nexus-license/nexus.lic git-nexus-docker-images/nexus.lic; ls -la git-nexus-docker-images
- put: nexus-docker-image
params:
build: git-nexus-docker-images/
resources:
- name: git-nexus-docker-images
type: git
source:
uri: git@git.company.com:dev/nexus-pro-dockerfile.git
branch: test
paths: [Dockerfile]
private_key: {{git_ci_key}}
- name: git-nexus-license
type: git
source:
uri: git@git.company.com:secrets/nexus-information.git
branch: master
paths: [nexus.lic]
private_key: {{git_ci_key}}
- name: nexus-docker-image
type: docker-image
source:
username: {{aws-token-username}}
password: {{aws-token-password}}
repository: {{ecr-nexus-repo}}
我已经发布了实际上可以部署到 Concourse 的管道;但是我尝试了很多东西,但我无法弄清楚如何做到这一点。我坚持将许可证文件从git-nexus-license
一个目录移动到另一个git-nexus-docker-images
目录。我所做的似乎并没有 mvnexus.lic
文件,因为在构建 docker 映像时它失败了,因为它在目录中找不到该文件。
编辑:我已经成功地能够nexus.lic
使用上面的代码“mv”,但是由于找不到文件,构建仍然失败!我不确定我做错了什么,如果我手动构建,构建工作正常,但使用 Concourse 它失败了。