Add docker scripts

This commit is contained in:
2025-01-20 20:13:01 +00:00
parent 839c0ca7b6
commit f2df4c9b43
5 changed files with 37 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
# Use the official Python image
FROM python:3.10-slim
# Set the working directory in the container
WORKDIR /gupbot
# Copy the application code into the container
ADD gupbot /gupbot
# Install required Python packages
RUN pip install --no-cache-dir discord.py
# Command to run your Python script
CMD ["python", "gupbot.py"]