From 4f5116f46d2f420e1283fb12fb7808f33bf77829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87a=C4=9Fatay=20Onur=20=C5=9Eeng=C3=B6r?= Date: Sun, 17 May 2026 15:36:37 +0300 Subject: [PATCH 1/2] Rename Dockerfile to Containerfile Containerfile is the OCI-aligned name and is recognized natively by Podman/Buildah and by modern Docker BuildKit. Docker users on older clients can still build with `-f Containerfile`. .dockerignore keeps its name since Docker does not read .containerignore. Co-Authored-By: Claude Opus 4.7 --- .dockerignore | 2 +- Dockerfile => Containerfile | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Dockerfile => Containerfile (100%) diff --git a/.dockerignore b/.dockerignore index fc5dd48..a24bc62 100644 --- a/.dockerignore +++ b/.dockerignore @@ -7,6 +7,6 @@ compose __pycache__ db.sqlite3 projects -Dockerfile +Containerfile staticfiles/ kaplancloudapp/projects diff --git a/Dockerfile b/Containerfile similarity index 100% rename from Dockerfile rename to Containerfile From 43821e7328ce17e78946e7b356caf694f65e697f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87a=C4=9Fatay=20Onur=20=C5=9Eeng=C3=B6r?= Date: Sun, 17 May 2026 16:00:31 +0300 Subject: [PATCH 2/2] Rename docker-entrypoint.sh to container-entrypoint.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Matches the Containerfile rename. The filename is purely cosmetic — no container runtime looks for it by name — so this is consistency cleanup rather than a behavior change. Co-Authored-By: Claude Opus 4.7 --- Containerfile | 4 ++-- docker-entrypoint.sh => container-entrypoint.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename docker-entrypoint.sh => container-entrypoint.sh (100%) diff --git a/Containerfile b/Containerfile index 25b987d..0d2fc04 100644 --- a/Containerfile +++ b/Containerfile @@ -11,8 +11,8 @@ RUN apt-get update && \ RUN pip install -U pip && \ pip install --group prod -COPY docker-entrypoint.sh /usr/local/bin/ -ENTRYPOINT ["docker-entrypoint.sh"] +COPY container-entrypoint.sh /usr/local/bin/ +ENTRYPOINT ["container-entrypoint.sh"] EXPOSE 8080 diff --git a/docker-entrypoint.sh b/container-entrypoint.sh similarity index 100% rename from docker-entrypoint.sh rename to container-entrypoint.sh