-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge main into branch
- Loading branch information
Showing
6 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.13.1-slim@sha256:1127090f9fff0b8e7c3a1367855ef8a3299472d2c9ed122948a576c39addeaf1 | ||
FROM python:3.13.1-slim@sha256:23a81be7b258c8f516f7a60e80943cace4350deb8204cf107c7993e343610d47 | ||
LABEL maintainer="SBB Polarion Team <[email protected]>" | ||
|
||
ARG APP_IMAGE_VERSION=0.0.0-dev | ||
|
@@ -9,6 +9,6 @@ COPY ./app/ ${WORKING_DIR}/app/ | |
COPY ./poetry.lock ${WORKING_DIR} | ||
Check warning on line 9 in Dockerfile GitHub Actions / release-pleaseVariables should be defined before their use
|
||
COPY ./pyproject.toml ${WORKING_DIR} | ||
Check warning on line 10 in Dockerfile GitHub Actions / release-pleaseVariables should be defined before their use
|
||
|
||
RUN pip install --no-cache-dir -r "${WORKING_DIR}"/requirements.txt && poetry install | ||
RUN pip install --no-cache-dir -r "${WORKING_DIR}"/requirements.txt && poetry install --no-root | ||
|
||
ENTRYPOINT [ "poetry", "run", "python", "-m", "app.requirements_inspector_service" ] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "open-source-polarion-docker-repo-template" | ||
version = "0.1.0" | ||
description = "" | ||
authors = [ | ||
"SBB Polarion Team <[email protected]>", | ||
{name="SBB Polarion Team", email="[email protected]"} | ||
] | ||
license = "Apache License 2.0" | ||
readme = "README.md" | ||
requires-python=">=3.13" | ||
dependencies = [] | ||
|
||
[tool.poetry] | ||
packages = [{include = "app"}] | ||
requires-poetry = ">=2.0" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.13" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
poetry==1.8.5 | ||
poetry==2.0.1 |