mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-06 23:26:50 +00:00
* perf: update dependency * perf: remove source build * perf: Update Dockerfile with new base image tag * perf: use cache build * perf: Update Dockerfile with new base image tag * fix: variable incorrectly defined * perf: Update Dockerfile with new base image tag * fix: openpyxl fixed version * perf: Update Dockerfile with new base image tag * perf: remove cache * perf: Update Dockerfile with new base image tag * perf: update pyproject.toml * perf: Update Dockerfile with new base image tag * perf: remove cache * perf: Update Dockerfile with new base image tag --------- Co-authored-by: 吴小白 <296015668@qq.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
14 lines
264 B
Bash
14 lines
264 B
Bash
#!/bin/bash
|
|
|
|
command -v poetry >/dev/null 2>&1 || {
|
|
echo "poetry not found. Aborting."
|
|
exit 1
|
|
}
|
|
|
|
if [ ! -f "pyproject.toml" ]; then
|
|
echo "pyproject.toml not found. Aborting."
|
|
exit 1
|
|
fi
|
|
|
|
poetry config virtualenvs.create false
|
|
poetry lock --no-update |