# Use an official Python runtime as a base image FROM python:3.11-slim # Set the working directory in the container WORKDIR /app # Copy the current directory contents into the container at /usr/src/app COPY test.pem /app/client.pem COPY test.key /app/client.key COPY test-ingress.py /app/ COPY client.py /app/ COPY main.py /app/ # Install any needed packages specified in requirements.txt RUN pip install requests