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

use existing state of repo to build, not the checkout

Browse files
Files changed (1) hide show
  1. docker/Dockerfile +3 -2
docker/Dockerfile CHANGED
@@ -12,5 +12,6 @@ WORKDIR /workspace
12
  RUN python3 -m pip install -U --no-cache-dir pydantic
13
 
14
  ARG REF=main
15
- RUN git clone https://github.com/winglian/axolotl && cd axolotl && git checkout $REF && \
16
- pip install -e .[int4]
 
 
12
  RUN python3 -m pip install -U --no-cache-dir pydantic
13
 
14
  ARG REF=main
15
+ RUN mkdir axolotl
16
+ COPY . axolotl/
17
+ RUN pip install -e .[int4]