Compare commits
8
Commits
4f8f32cf93
...
7229773371
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7229773371 | ||
|
|
ef985f6687 | ||
|
|
599769a8f6 | ||
|
|
70dca8f598 | ||
|
|
28d86e8762 | ||
|
|
fb278b641c | ||
|
|
3eb5f5e826 | ||
|
|
4a4ee95e31 |
@@ -17,6 +17,9 @@ jobs:
|
||||
python-verison: "3.12"
|
||||
architecture: "x64"
|
||||
- name: Install Packages
|
||||
env:
|
||||
PIP_INDEX_URL: http://192.168.1.2:5001/index/
|
||||
PIP_TRUSTED_HOST: 192.168.1.2
|
||||
run: |
|
||||
pip install poetry
|
||||
poetry install
|
||||
|
||||
+2
-1
@@ -31,7 +31,8 @@ ENV PATH="${POETRY_HOME}/bin:$PATH"
|
||||
WORKDIR ${APP_HOME}
|
||||
COPY ./poetry.lock ./pyproject.toml ./
|
||||
RUN --mount=type=cache,target=${POETRY_CACHE_DIR} poetry install \
|
||||
--with shared,model
|
||||
--with shared,model \
|
||||
--no-root
|
||||
|
||||
# final stage
|
||||
FROM python:3.12-slim-bookworm
|
||||
|
||||
+2
-1
@@ -31,7 +31,8 @@ ENV PATH="${POETRY_HOME}/bin:$PATH"
|
||||
WORKDIR ${APP_HOME}
|
||||
COPY ./poetry.lock ./pyproject.toml ./
|
||||
RUN --mount=type=cache,target=${POETRY_CACHE_DIR} poetry install \
|
||||
--with shared,web_ui
|
||||
--with shared,web_ui \
|
||||
--no-root
|
||||
|
||||
# final stage
|
||||
FROM python:3.12-slim-bookworm
|
||||
|
||||
Generated
+655
-180
File diff suppressed because it is too large
Load Diff
@@ -49,6 +49,12 @@ dash-bootstrap-components = "^1.5.0"
|
||||
dash-mantine-components = "^0.12.1"
|
||||
dash-auth = "^2.2.0"
|
||||
|
||||
|
||||
[[tool.poetry.source]]
|
||||
name = "threadripper"
|
||||
url = "http://192.168.1.2:5001/index/"
|
||||
priority = "primary"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
Reference in New Issue
Block a user