elungky commited on
Commit
95d53e3
·
1 Parent(s): fb926f5

Final Dockerfile syntax correction: ensure chmod +x is a standalone RUN command

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -51,12 +51,12 @@ RUN . $CONDA_DIR/etc/profile.d/conda.sh && \
51
 
52
  # Copy the pre-built Transformer Engine wheel into the container
53
  # Ensure the filename matches your actual wheel file.
54
- COPY ./transformer_engine_torch-1.12.0+cu121-cp310-cp310-linux_x86_64.whl /tmp/
55
 
56
  # Install Transformer Engine using the pre-built wheel
57
  RUN . $CONDA_DIR/etc/profile.d/conda.sh && \
58
  conda activate cosmos-predict1 && \
59
- pip install --no-cache-dir /tmp/transformer_engine_torch-1.12.0+cu121-cp310-cp310-linux_x86_64.whl
60
 
61
  # Make the start.sh script executable.
62
  # THIS IS A STANDALONE RUN COMMAND.
 
51
 
52
  # Copy the pre-built Transformer Engine wheel into the container
53
  # Ensure the filename matches your actual wheel file.
54
+ COPY ./transformer_engine.whl /tmp/
55
 
56
  # Install Transformer Engine using the pre-built wheel
57
  RUN . $CONDA_DIR/etc/profile.d/conda.sh && \
58
  conda activate cosmos-predict1 && \
59
+ pip install --no-cache-dir /tmp/transformer_engine.whl
60
 
61
  # Make the start.sh script executable.
62
  # THIS IS A STANDALONE RUN COMMAND.