# Use an official Python runtime as a base image
FROM python:3.11

# Set the working directory in the container
WORKDIR /app

# Copy the requirements file into the container at /app
COPY requirements.txt /app/

# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Copy powerlog into the image
COPY ./intel-power-gadget.dmg /app/

# Copy the rest of your application's code
COPY . /app

# Command to run the application
CMD ["python3", "run_testcases.py", "3", "lazyLoading"]
