We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eaaf3f1 + cca6d9c commit e9b0770Copy full SHA for e9b0770
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM php:8.0-apache
+FROM php:8.1-apache
2
3
# keep ordered alphabetically to reduce diffs
4
RUN apt update && apt install -y \
Makefile
@@ -4,7 +4,7 @@ IMAGE=ghcr.io/coderockr/php
TAG=$(shell git branch | grep \* | cut -d ' ' -f2)
5
6
build:
7
- docker build . -t $(IMAGE):$(TAG)
+ DOCKER_BUILDKIT=1 docker build . -t $(IMAGE):$(TAG)
8
9
push: build
10
docker push $(IMAGE):$(TAG)
0 commit comments