Initial commit: Echoes of the Ashes - Telegram RPG Bot

This commit is contained in:
Joan
2025-10-18 19:21:19 +02:00
commit 3ab412bc09
65 changed files with 14484 additions and 0 deletions

25
Dockerfile.map Normal file
View File

@@ -0,0 +1,25 @@
FROM python:3.11-slim
WORKDIR /app
# Install Docker CLI for container restart functionality
RUN apt-get update && \
apt-get install -y --no-install-recommends \
curl \
ca-certificates && \
curl -fsSL https://get.docker.com | sh && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Copy all application code (needed for bot module access)
COPY . .
# Install requirements (web-map and main requirements)
RUN pip install --no-cache-dir -r /app/web-map/requirements.txt && \
pip install --no-cache-dir -r /app/requirements.txt || true
WORKDIR /app/web-map
EXPOSE 8080
CMD ["python", "server_enhanced.py"]