我无法使用 github 操作在 monorepo 中创建 docker 图像

I can't create a docker image in a monorepo with github actions

我正在尝试创建一个使用 https://github.com/docker/build-push-action.

构建 docker 图像并将其推送到 docker 中心的工作流

我有一个文件夹结构如下的 monorepo:

project
    api
        Dockerfile
    client

这是工作流程:

name: deploy

on:
  push:
    branches:
      - main
    paths:
      - "api/**"

jobs:
  docker:
    runs-on: ubuntu-latest
    steps:
      - name: Set up QEMU
        uses: docker/setup-qemu-action@v1
      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v1
      - name: Login to DockerHub
        uses: docker/login-action@v1
        with:
          username: ${{ secrets.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}
      - name: Build and push
        id: docker_build
        uses: docker/build-push-action@v2
        with:
          push: true
          tags: repo/kheilyshad-api:latest
          context: .
          file: api/Dockerfile

它总是失败并出现此错误:

/usr/bin/docker buildx build --tag ***/kheilyshad-api:latest --iidfile /tmp/docker-build-push-yGQ2mf/iidfile --metadata-file /tmp/docker-build-push-yGQ2mf/metadata-file --file api/Dockerfile --push .
error: could not find api: stat api: no such file or directory
Error: buildx failed with: error: could not find api: stat api: no such file or directory

我必须在根目录中构建 docker 映像,所以我使用 file 指定 Dockerfile 的路径。基本上是这样

docker build -f ./api/Dockerfile .

但找不到 api 文件夹。我尝试将文件设置为 ./api/Dockerfileapi 等,但其中 none 有效。

您似乎没有查看存储库。尝试将 actions/checkout@v2 添加到您的步骤中:

steps:
  - uses: actions/checkout@v2