Spaces:
Build error
Build error
Final Dockerfile syntax correction: ensure chmod +x is a standalone RUN command
Browse files- 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 ./
|
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/
|
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.
|