Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: airflow image build #28

Merged
merged 1 commit into from
Apr 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/run_domino/run_locally_kind.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,9 @@ some_local_pieces_repository_name = "/path/to/local/pieces/repository"
To build the images, you can run the following commands from the root of the Domino repository:

```bash
docker build -f ./frontend/Dockerfile.prod -t domino-frontend ./frontend
docker build -f ./rest/Dockerfile -t domino-rest ./rest
docker build -f Dockerfile-airflow-domino-base-dev -t domino-airflow .
docker build -f ./frontend/Dockerfile.prod -t domino-frontend ./frontend
docker build -f ./rest/Dockerfile -t domino-rest ./rest
docker build -f ./Dockerfile-airflow-domino.dev -t domino-airflow .
```

and then set the image names in the `config-domino-local.yaml` file.
Expand Down
Loading