File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,11 @@ permissions:
14
14
jobs :
15
15
16
16
call-docker-build-gpt-code-ui :
17
- uses : localagi/ai-dedicated-workflows/.github/workflows/operation-docker-build-publish.yml@main
17
+ uses : localagi/ai-dedicated-workflows/.github/workflows/operation-docker-build-publish.yml@v2
18
18
with :
19
19
registry-repo-name : gpt-code-ui
20
+ context-repository : ricklamers/gpt-code-ui
21
+ context-repository-ref : ${{ github.ref_name }}
20
22
registry-readme : README.docker.md
21
23
tags : |
22
24
type=schedule
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM python:3.10-slim-buster
3
3
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
4
4
apt-get update ; \
5
5
apt-get upgrade -y ; \
6
- apt-get install -y wget git python3 python3-pip
6
+ apt-get install -y wget python3 python3-pip
7
7
8
8
RUN pip3 install --upgrade pip wheel
9
9
@@ -29,8 +29,7 @@ ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules
29
29
ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
30
30
31
31
32
- ARG GPTCODEUI_VERSION="main"
33
- RUN git clone -b "$GPTCODEUI_VERSION" --depth 1 https://github.com/ricklamers/gpt-code-ui
32
+ COPY --link . /gpt-code-ui
34
33
WORKDIR /gpt-code-ui
35
34
36
35
# prereqs for gpt-code-ui
You can’t perform that action at this time.
0 commit comments