Skip to content

Commit 189b9e6

Browse files
author
nemo
committed
Fix legacy format warnings
1 parent 89a6b72 commit 189b9e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/peft-gpu/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ RUN conda create --name peft python=${PYTHON_VERSION} ipython jupyter pip
2020
# Below is copied from https://github.com/huggingface/accelerate/blob/main/docker/accelerate-gpu/Dockerfile
2121
# We don't install pytorch here yet since CUDA isn't available
2222
# instead we use the direct torch wheel
23-
ENV PATH /opt/conda/envs/peft/bin:$PATH
23+
ENV PATH=/opt/conda/envs/peft/bin:$PATH
2424
# Activate our bash shell
2525
RUN chsh -s /bin/bash
2626
SHELL ["/bin/bash", "-c"]
2727

2828
# Stage 2
2929
FROM nvidia/cuda:12.8.1-devel-ubuntu22.04 AS build-image
3030
COPY --from=compile-image /opt/conda /opt/conda
31-
ENV PATH /opt/conda/bin:$PATH
31+
ENV PATH=/opt/conda/bin:$PATH
3232

3333
# Install apt libs
3434
RUN apt-get update && \

0 commit comments

Comments
 (0)