Docker云自动构建几乎立即失败

时间:2018-06-07 04:26:04

标签: node.js docker build dockerfile docker-image

在我的个人docker cloud帐户上运行的自动构建在触发后大约2秒内失败(从git提交手动和自动)。

当我导航到失败的构建时 - 构建日志窗口停留在'等待日志...' Dockerfile选项卡还说“Dockerfile不可用”'但是我的git repo中有一个dockerfile。

Dockerfile:

$FROM node:carbon

# Create app directory
WORKDIR /usr/src/app

# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are 
copied
# where available (npm@5+)
COPY package*.json ./

RUN npm install
# If you are building your code for production
# RUN npm install --only=production

# Bundle app source
COPY . .

EXPOSE 4444
CMD [ "node", "app.js" ]

我尝试删除并重新创建自动构建,并重新链接git帐户无效。

1 个答案:

答案 0 :(得分:0)

我的猜测是自动构建正在运行Dockerfile不可用的地方。确保Dockerfile位于代码的根目录中。