chore: remove useless Dockerfile

This commit is contained in:
freeleaps-admin 2025-03-30 16:55:46 +00:00
parent 4dfbab4d4d
commit ca07c83512

View File

@ -1,15 +0,0 @@
# Dockerfile for Python Service
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy requirements file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt && rm -rf /root/.cache/pip
# Copy application code
COPY . .
# Run the Python script
CMD ["python", "main.py"]