From 420df682f436d9343737f17d946c236543f56cba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Garc=C3=ADa=20L=C3=B3pez?= Date: Wed, 3 Dec 2025 12:21:41 +0100 Subject: [PATCH] =?UTF-8?q?Dockerizaci=C3=B3n=20aplicaci=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8324b98 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM php:8.2-cli + +WORKDIR /usr/src/calculatorcli + +COPY . /usr/src/calculatorcli + +CMD [ "php", "./index.php" ]