We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a7400f commit 9324854Copy full SHA for 9324854
2 files changed
Dockerfile
@@ -0,0 +1,7 @@
1
+FROM php:8.0-cli
2
+RUN apt-get update && apt-get install -y apt-utils zip unzip
3
+# Get latest Composer
4
+COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
5
+COPY . /usr/src/slim-http-cache
6
+WORKDIR /usr/src/slim-http-cache
7
+CMD [ "php" ]
composer.json
@@ -18,7 +18,7 @@
18
}
19
],
20
"require": {
21
- "php": "^7.2",
+ "php": "^7.2 | ^8.0",
22
"psr/http-message": "^1.0",
23
"psr/http-server-middleware": "^1.0"
24
},
0 commit comments