Skip to content

Commit

Permalink
fix: Dockerfile location in Makefile (#2254)
Browse files Browse the repository at this point in the history
<!--
Please read and fill out this form before submitting your PR.

Please make sure you have reviewed our contributors guide before
submitting your
first PR.
-->

## Overview

<!-- 
Please provide an explanation of the PR, including the appropriate
context,
background, goal, and rationale. If there is an issue with this
information,
please provide a tl;dr and link the issue. 
-->

As caught by @mojtaba-esk, the Makefile is using an invalid Dockerfile
location.

## Checklist

<!-- 
Please complete the checklist to ensure that the PR is ready to be
reviewed.

IMPORTANT:
PRs should be left in Draft until the below checklist is completed.
-->

- [ ] New and updated code has appropriate documentation
- [ ] New and updated code has new and/or updated testing
- [ ] Required CI checks are passing
- [ ] Visual proof for any user facing features like CLI or
documentation updates
- [ ] Linked issues closed with keywords
  • Loading branch information
rach-id authored Aug 11, 2023
1 parent 0aba5bd commit 86c06b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ proto-format:
## build-docker: Build the celestia-appd docker image. Requires docker.
build-docker:
@echo "--> Building Docker image"
$(DOCKER) build -t celestiaorg/celestia-app -f docker/Dockerfile .
$(DOCKER) build -t celestiaorg/celestia-app -f Dockerfile .
.PHONY: build-docker

## lint: Run all linters: golangci-lint, markdownlint, hadolint, yamllint.
Expand Down

0 comments on commit 86c06b5

Please sign in to comment.