From e8764bb13b0007f2d2c092a2255caff8504531a0 Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Wed, 17 Sep 2025 10:08:22 -0500 Subject: [PATCH] fix: reverts back to using dedicated dev dockerfile --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1e2e45e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM code.caldwell.digital/home/torsearch-base:php8.4 + +ENV SERVER_NAME=":80" +ENV CADDY_GLOBAL_OPTIONS="auto_https off" +ENV APP_RUNTIME="Runtime\\FrankenPhpSymfony\\Runtime" +ENV APP_VERSION="0.0.0-dev" + +HEALTHCHECK --interval=3s --timeout=3s --retries=10 CMD [ "php", "/app/bin/console", "startup:status" ] + +COPY --chmod=0755 docker/app/Caddyfile /etc/frankenphp/Caddyfile \ No newline at end of file