Merge branch 'main' of git.private.coffee:privatecoffee/wikimore

This commit is contained in:
Kumi 2025-01-31 09:11:02 +01:00
commit 51a251bcb8
No known key found for this signature in database
GPG key ID: ECBCC9082395383F
2 changed files with 17 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir wikimore
EXPOSE 8109
CMD ["wikimore"]

5
docker-compose.yml Normal file
View file

@ -0,0 +1,5 @@
services:
wikimore-app:
build: .
ports:
- 8109:8109 ## change host port if needed