acc-ltd/EKSLOGS
0
1FROM python:3.12-slim2# Set working directory inside the container3WORKDIR /app4 5ENV PYTHONUNBUFFERED=16 7# Copy requirements.txt first to leverage Docker cache8COPY requirements.txt .9 10# Install dependencies11RUN pip install --no-cache-dir -r requirements.txt12 13RUN apt-get update && apt-get install -y curl14 15# Copy the rest of the code16COPY . .17 18# Run the main script19CMD ["python3", "PythonRunner.py"]20 