winglian commited on
Commit
7576d85
1 Parent(s): 3b4b476

fix to cd to path in docker

Browse files
Files changed (1) hide show
  1. docker/Dockerfile +2 -1
docker/Dockerfile CHANGED
@@ -14,4 +14,5 @@ RUN python3 -m pip install -U --no-cache-dir pydantic
14
  ARG REF=main
15
  RUN mkdir axolotl
16
  COPY . axolotl/
17
- RUN pip install -e .[int4]
 
 
14
  ARG REF=main
15
  RUN mkdir axolotl
16
  COPY . axolotl/
17
+ RUN cd axolotl && \
18
+ pip install -e .[int4]