Skip to content

Commit 7b61772

Browse files
committed
feat: update base package to php:8.2.18-fpm-alpine3.19
1 parent c86ceb2 commit 7b61772

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
# Image URL to use all building/pushing image targets
22
REGISTRY ?= k90mirzaei/php
3+
VERSION ?= 8.2.18-fpm-alpine3.19
34

45
all: build push
56

67
build: ## Build all images
78
- @echo "Building..."
8-
- docker build ./fpm-alpine/8.1 -t $(REGISTRY):8.1-fpm-alpine3.18
9-
- docker build ./fpm-alpine/8.2 -t $(REGISTRY):8.2-fpm-alpine3.18
9+
- docker build ./fpm-alpine/8.1 -t $(REGISTRY):$(VERSION)
10+
- docker build ./fpm-alpine/8.2 -t $(REGISTRY):$(VERSION)
1011

1112
push: ## Push all images to github repo
1213
- @echo "Pushing..."
13-
- docker push $(REGISTRY):8.1-fpm-alpine3.18
14-
- docker push $(REGISTRY):8.2-fpm-alpine3.18
14+
- docker push $(REGISTRY):$(VERSION)
15+
- docker push $(REGISTRY):$(VERSION)
1516

1617

1718
help: ## Show makefile helper

0 commit comments

Comments
 (0)