Add Dockerfile

This commit is contained in:
blitzwing 2025-01-07 20:07:22 +00:00
parent 11020b3566
commit de44c145e4

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"]