From 22ac3770fde77245e74e3ef98937707a3ba6c960 Mon Sep 17 00:00:00 2001 From: Nathan Vieira Marcelino Date: Fri, 5 Apr 2024 14:18:52 -0300 Subject: [PATCH] fix: airflow image build --- docs/run_domino/run_locally_kind.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/run_domino/run_locally_kind.md b/docs/run_domino/run_locally_kind.md index 5032820..450cd18 100644 --- a/docs/run_domino/run_locally_kind.md +++ b/docs/run_domino/run_locally_kind.md @@ -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.