Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -10,8 +10,6 @@ RUN apk add --no-cache git
|
|
10 |
WORKDIR /workspace/ComfyUI
|
11 |
|
12 |
# Clone the repository and checkout the latest tag
|
13 |
-
RUN git pull
|
14 |
-
&& latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`) \
|
15 |
-
&& git checkout $latest_tag
|
16 |
|
17 |
# Continue with other steps (e.g., build, install dependencies, etc.)
|
|
|
10 |
WORKDIR /workspace/ComfyUI
|
11 |
|
12 |
# Clone the repository and checkout the latest tag
|
13 |
+
RUN git pull
|
|
|
|
|
14 |
|
15 |
# Continue with other steps (e.g., build, install dependencies, etc.)
|