From dcb798450fd82f9dc838899602af120f3da13dc2 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 26 Feb 2025 09:15:11 +0100 Subject: [PATCH] chore: add executable flag and bump version Enables the entrypoint script by setting its executable permission in the Dockerfile, ensuring proper container startup. Also updates the project version for the new release. --- Dockerfile | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 091331f..fe51334 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,8 @@ RUN $APP_ENV/bin/pip install --no-cache-dir pip && \ COPY entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh + EXPOSE 8109 USER wikimore diff --git a/pyproject.toml b/pyproject.toml index 472431d..c87c2da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "wikimore" -version = "0.1.9" +version = "0.1.10" authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }] description = "A simple frontend for Wikimedia wikis" readme = "README.md"