From 7f3d669b40f8d29010efd9578d4a2cdd0f16b20e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hyogeun=20Oh=20=28=EC=98=A4=ED=9A=A8=EA=B7=BC=29?= Date: Sat, 18 Jan 2025 02:44:49 +0900 Subject: [PATCH] Remove Duplicate Declaration of pandas in `Dockerfile` (#6959) ### Description This pull request removes the redundant installation of `pandas` from the `Dockerfile`. It was previously declared twice, and this update eliminates the duplicate entry, improving the clarity and maintainability of the `Dockerfile`. https://github.com/microsoft/DeepSpeed/blob/018ece5af2d89a11a4a235f81f94496c78b4f990/docker/Dockerfile#L124 https://github.com/microsoft/DeepSpeed/blob/018ece5af2d89a11a4a235f81f94496c78b4f990/docker/Dockerfile#L135 ### Changes Removed the duplicate pandas installation line from the `RUN pip install` command. --- docker/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 035a094d0051..5a62a5a01aba 100755 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -132,7 +132,6 @@ RUN pip install psutil \ sentencepiece \ msgpack \ requests \ - pandas \ sphinx \ sphinx_rtd_theme \ scipy \