fix to cd to path in docker
Browse files- 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
|
|
|
|
14 |
ARG REF=main
|
15 |
RUN mkdir axolotl
|
16 |
COPY . axolotl/
|
17 |
+
RUN cd axolotl && \
|
18 |
+
pip install -e .[int4]
|