Skip to content

Commit

Permalink
Merge pull request #4366 from lpofredc/master
Browse files Browse the repository at this point in the history
🐛 [Bug] Fix missing Dockerfile path on make build scripts (fix #4365)
  • Loading branch information
submarcos authored Nov 14, 2024
2 parents 18b3657 + 49d9afc commit b89ae96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ COLOR_DEBUG = \033[36m
COLOR_RESET = \033[0m

build:
docker build -t geotrek . --build-arg BASE_IMAGE_TAG=$(BASE_IMAGE_TAG)
docker build -t geotrek -f docker/Dockerfile . --build-arg BASE_IMAGE_TAG=$(BASE_IMAGE_TAG)

build-no-cache:
docker build -t geotrek --no-cache .
build_no_cache:
docker build -t geotrek -f docker/Dockerfile --no-cache .

build_deb:
docker pull $(DISTRO)
Expand Down
3 changes: 3 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ CHANGELOG
2.110.0+dev (XXXX-XX-XX)
----------------------------

**Bug fixes**

- Fix missing Dockerfile path on make build scripts


2.110.0 (2024-11-13)
Expand Down

0 comments on commit b89ae96

Please sign in to comment.