FROM python:3.11-slim # Access Hugging Face Space environment variables RUN echo "VAR1 is: $VAR1" # This prints the value of VAR1 # Access Hugging Face Space secrets RUN echo "SECRET2 is: $SECRET2" # This prints the value of SECRET2 RUN pip install mlflow boto3