Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
{
"arg": "FASTAPI_COMMON_REF",
"repo": "https://github.com/openg2p/openg2p-fastapi-common",
"ref": "1.2"
"ref": "1.2.1"
},
{
"arg": "IAM_SERVICE_REF",
"arg": "IAM_CORE_REF",
"repo": "https://github.com/openg2p/iam",
"ref": "1.4"
"ref": "1.4.2"
}
]
},
Expand Down
6 changes: 3 additions & 3 deletions docker/master-data-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ FROM python:3.12.11-alpine3.22
# External OpenG2P library ref (not part of this repo). Override via build-arg /
# workflow input. The master-data code is installed from the LOCAL in-repo
# source, so the image always reflects the current branch.
ARG FASTAPI_COMMON_REF=1.2.0
ARG FASTAPI_COMMON_REF=1.2.1
# Pin iam-core to the IAM 1.4 line (data_policy lives here; 1.3 does not export it).
ARG IAM_SERVICE_REF=1.4.0
ARG IAM_CORE_REF=1.4.2

RUN apk add --no-cache --virtual .build-deps gcc libc-dev linux-headers make \
&& apk add --no-cache bash git gettext libpq-dev libmagic
Expand All @@ -15,7 +15,7 @@ WORKDIR /app
# External libs (openg2p-fastapi-common)
RUN pip install --no-cache-dir \
"git+https://github.com/openg2p/openg2p-fastapi-common@${FASTAPI_COMMON_REF}#subdirectory=openg2p-fastapi-common" \
"git+https://github.com/openg2p/iam@${IAM_SERVICE_REF}#subdirectory=iam-core"
"git+https://github.com/openg2p/iam@${IAM_CORE_REF}#subdirectory=iam-core"

# Local master-data source (build context = repo root). Remaining deps resolve
# from PyPI via the package's pyproject.
Expand Down
2 changes: 1 addition & 1 deletion master-data-api/src/openg2p_gen2_master_data/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.0"
__version__ = "1.1.1"
Loading