# Use the official Python 3.12 image
FROM python:3.12

# Set the working directory
WORKDIR /workspace

# Set environment variables from the .env file
RUN pip install python-dotenv
CMD ["python"]
