22 lines
526 B
Docker
22 lines
526 B
Docker
# Use an official Python runtime as the base image
|
|
FROM python:3.13-slim
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /bot
|
|
|
|
# Copy the current directory contents into the container at /app
|
|
COPY . /bot
|
|
|
|
# Install any needed packages specified in requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Make port 80 available to the world outside this container
|
|
EXPOSE 80
|
|
EXPOSE 443
|
|
|
|
# Define environment variable
|
|
ENV NAME DISCORD_TOKEN
|
|
|
|
# Run app.py when the container launches
|
|
CMD ["python", "bot.py"]
|