Manage environment variables in Docker configurations with appropriate scope, placement, and documentation: 1. **Set environment variables with appropriate scope**:
Manage environment variables in Docker configurations with appropriate scope, placement, and documentation:
DEBIAN_FRONTEND
only within the commands that need them:
```dockerfile
RUN apt-get update
&& DEBIAN_FRONTEND=noninteractive apt-get install -y –no-install-recommends
package1 package2
ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y package1 package2 ```
# version details
ARG LIBFABRIC_VERSION="1.20.0"
ARG PYTORCH_VERSION="2.2.2"
# Gaudi does not currently support Python 3.11, so we downgrade to 3.10
# https://docs.habana.ai/en/latest/Support_Matrix/Support_Matrix.html
Enter the URL of a public GitHub repository