Skip to content

Commit

Permalink
chore: dockerfile e2e rename (#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbez committed Mar 12, 2022
1 parent 5e86813 commit 1695b76
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ clean:
###############################################################################

docker-build:
@docker build -t umeenet/umeed .
@docker build -t umeenet/umeed-e2e -f umee.e2e.Dockerfile .

docker-build-debug:
@docker build -t umeenet/umeed --build-arg IMG_TAG=debug .
@docker build -t umeenet/umeed-e2e --build-arg IMG_TAG=debug -f umee.e2e.Dockerfile .

docker-push-hermes:
@cd tests/e2e/docker; docker build -t ghcr.io/umee-network/hermes-e2e:latest -f hermes.Dockerfile .; docker push ghcr.io/umee-network/hermes-e2e:latest
Expand Down
8 changes: 4 additions & 4 deletions tests/e2e/e2e_setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ func (s *IntegrationTestSuite) runValidators() {
Mounts: []string{
fmt.Sprintf("%s/:/root/.umee", val.configDir()),
},
Repository: "umeenet/umeed",
Repository: "umeenet/umeed-e2e",
}

// expose the first validator for debugging and communication
Expand Down Expand Up @@ -640,7 +640,7 @@ func (s *IntegrationTestSuite) runContractDeployment() {
&dockertest.RunOptions{
Name: "gravity-contract-deployer",
NetworkID: s.dkrNet.Network.ID,
Repository: "umeenet/umeed",
Repository: "umeenet/umeed-e2e",
// NOTE: container names are prefixed with '/'
Entrypoint: []string{
"peggo",
Expand Down Expand Up @@ -742,7 +742,7 @@ func (s *IntegrationTestSuite) runOrchestrators() {
&dockertest.RunOptions{
Name: s.chain.orchestrators[i].instanceName(),
NetworkID: s.dkrNet.Network.ID,
Repository: "umeenet/umeed",
Repository: "umeenet/umeed-e2e",
// NOTE: container names are prefixed with '/'
Entrypoint: []string{
"peggo",
Expand Down Expand Up @@ -835,7 +835,7 @@ func (s *IntegrationTestSuite) runPriceFeeder() {
&dockertest.RunOptions{
Name: "umee-price-feeder",
NetworkID: s.dkrNet.Network.ID,
Repository: "umeenet/umeed",
Repository: "umeenet/umeed-e2e",
Mounts: []string{
fmt.Sprintf("%s/:/root/price-feeder", priceFeederCfgPath),
fmt.Sprintf("%s/:/root/.umee", umeeVal.configDir()),
Expand Down
File renamed without changes.

0 comments on commit 1695b76

Please sign in to comment.