From 87dd0e1d0a0ea381ea249cb5c005a4a3e0162c7b Mon Sep 17 00:00:00 2001 From: ducnt131 <62016666+anhductn2001@users.noreply.github.com> Date: Sat, 17 Feb 2024 04:17:26 +0700 Subject: [PATCH] chore: Add docker-build-e2e (#567) --- Makefile | 3 +++ e2e/README.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b3567eb9f..8eb91248f 100644 --- a/Makefile +++ b/Makefile @@ -86,6 +86,9 @@ install: go.sum build: go.sum go build $(BUILD_FLAGS) -o build/dymd ./cmd/dymd +docker-build-e2e: + @DOCKER_BUILDKIT=1 docker build -t ghcr.io/dymensionxyz/dymension:e2e -f Dockerfile . + ############################################################################### ### E2E tests ### ############################################################################### diff --git a/e2e/README.md b/e2e/README.md index d5aabea4d..9b7980d05 100644 --- a/e2e/README.md +++ b/e2e/README.md @@ -3,7 +3,7 @@ Make sure you have Docker installed. For testing in local machine you need 2 ste 1. Build a debug image with your code change ```bash -make docker-build-debug +make docker-build-e2e ``` 2. Run Test-case you want to test. Example: ```bash