Merge commit 'b5a2b4e6d1b958dbb3ad702026889172514c1fd6'

This commit is contained in:
ForeverPyrite
2025-05-08 01:36:25 -04:00
18 changed files with 599 additions and 567 deletions

View File

@@ -1,5 +1,5 @@
# Use an official Python runtime as a parent image
FROM python:3.11-slim
FROM python:3.13-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
@@ -18,7 +18,7 @@ COPY requirements.txt .
RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY . /app
COPY /app /app
# Make start.sh executable
RUN chmod +x /app/start.sh