use existing state of repo to build, not the checkout
Browse files- 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
|
| 16 |
-
|
|
|
|
|
|
| 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]
|