File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -129,5 +129,5 @@ jobs:
129129 TAG=$(git tag -l | tail -n 1)
130130 git tag -d $TAG
131131 git tag $TAG
132- git push origin HEAD:main
133- git push origin --tags
132+ git push origin HEAD:main -f
133+ git push origin --tags -f
Original file line number Diff line number Diff line change @@ -52,17 +52,18 @@ COPY --from=build --chown=${USER}:${GROUP} ${VENV_PATH} ${VENV_PATH}
5252# Set PATH to use the virtual environment
5353ENV PATH="${BIN_PATH}:$PATH"
5454
55- # Copy needed files for installing the package
55+ # Copy needed files to install the package
56+ COPY --from=build --chown=${USER}:${GROUP} VERSION .
5657COPY --from=build --chown=${USER}:${GROUP} ${WORKDIR}/pyproject.toml .
5758COPY --chown=${USER}:${GROUP} README.md README.md
5859COPY --chown=${USER}:${GROUP} src src
5960
60- # Copy the real VERSION file
61- COPY --chown=${USER}:${GROUP} VERSION .
62-
6361# Install the CLI tool (dependencies already installed in venv)
6462RUN ${BIN_PATH}/pip3 install --no-deps .
6563
6664USER ${USER}:${GROUP}
6765
66+ # Copy the real VERSION file
67+ COPY --chown=${USER}:${GROUP} VERSION .
68+
6869ENTRYPOINT [ "lightman-ai" ]
Original file line number Diff line number Diff line change 1- v0.18.9
1+ v0.18.9
You can’t perform that action at this time.
0 commit comments