https://github.com/docker/build-push-actionを使用して、docker イメージをビルドして docker ハブにプッシュするワークフローを作成しようとしています。
次のようなフォルダー構造のモノレポがあります。
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
file
ルートに Docker イメージをビルドする必要があるため、Dockerfile へのパスを指定するために使用します。それは基本的にこのようなものです
docker build -f ./api/Dockerfile .
しかし、api フォルダーが見つかりませんでした。./api/Dockerfile
ファイルを、などに設定しようとしましたapi
が、どれも機能しません。