Upload files to "/"

This commit is contained in:
2026-03-28 20:36:47 +00:00
parent aa7be68aff
commit b014aa160a
2 changed files with 15 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
CMD ["python", "main.py"]

5
Requirements.txt Normal file
View File

@@ -0,0 +1,5 @@
discord.py
docker
python-dotenv
aiohttp