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.
This commit is contained in:
Kumi 2025-02-26 09:15:11 +01:00
parent 68cc25148b
commit dcb798450f
No known key found for this signature in database
GPG key ID: ECBCC9082395383F
2 changed files with 3 additions and 1 deletions

View file

@ -14,6 +14,8 @@ RUN $APP_ENV/bin/pip install --no-cache-dir pip && \
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 8109 EXPOSE 8109
USER wikimore USER wikimore

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "wikimore" name = "wikimore"
version = "0.1.9" version = "0.1.10"
authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }] authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }]
description = "A simple frontend for Wikimedia wikis" description = "A simple frontend for Wikimedia wikis"
readme = "README.md" readme = "README.md"