作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在 Docker Cloud 上构建一个 Docker 容器。构建过程需要 git 子模块。
为了初始化本地构建的子模块,我们在 Dockerfile 中添加了以下行:
RUN git submodule update --init --recursive
git clone https://github.com/open62541/open62541.git
cd open62541
# Parent commit without git submodule update
git checkout e97abd591a159ce894488d93796b858d9f0d00b9
# This will fail because the submodules are obviously not initialized
docker build .
CMake Error at CMakeLists.txt:830 (message):
File /opt/open62541/deps/ua-nodeset/Schema/Opc.Ua.NodeSet2.xml not found.
You probably need to initialize the git submodule for deps/ua-nodeset.
Step 7/18 : RUN git submodule update --init --recursive
---> Running in b358c21c4d53
fatal: not a git repository: /src/b6tohshrfzzntavvhek3zna/.git/modules/deps/mdnsd
Unable to find current revision in submodule path 'deps/mdnsd'
git clone https://github.com/open62541/open62541.git
cd open62541
# Commit which added git submodule init in Dockerfile
git checkout ee9c18a6a05722edfe7c0d8d8e140d802fa2e5f2
# This will succeed
docker build .
最佳答案
请参阅我在这里给出的答案:https://stackoverflow.com/a/59640438/1021344
为简单起见,在此转载:
您需要使用 Hook :https://docs.docker.com/docker-hub/builds/advanced/#custom-build-phase-hooks
TL;DR: 把它放在 hooks/post_checkout
:
#!/bin/bash
# Docker hub does a recursive clone, then checks the branch out,
# so when a PR adds a submodule (or updates it), it fails.
git submodule update --init
关于git - 如何在 Dockerfile for Docker Cloud 中正确初始化 git 子模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58690455/
我是一名优秀的程序员,十分优秀!