From ee9cf95eafd3dcb70d1ca09ef75da1effffb1bea Mon Sep 17 00:00:00 2001 From: kokal33 Date: Thu, 5 Oct 2023 17:48:04 +0200 Subject: [PATCH] simplify docker build command --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 74a90f8a..281afc72 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,7 +36,8 @@ jobs: - name: Build and tag Docker image run: | echo "Building Docker image..." - docker build -f http-server/Dockerfile -t "public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}" . + docker build -t "public.ecr.aws/b3c4u5n1/filecoin-core-api:${{ github.ref_name }}" . + - name: Push Docker image to ECR run: | echo "Pushing Docker image to ECR..."