mirror of
https://git.private.coffee/PrivateCoffee/wikimore.git
synced 2025-04-04 21:47:37 +03:00
Merge branch 'main' of git.private.coffee:privatecoffee/wikimore
This commit is contained in:
commit
51a251bcb8
2 changed files with 17 additions and 0 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal 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
5
docker-compose.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
services:
|
||||
wikimore-app:
|
||||
build: .
|
||||
ports:
|
||||
- 8109:8109 ## change host port if needed
|
Loading…
Add table
Add a link
Reference in a new issue