Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update dependencies + base image #115

Merged
merged 1 commit into from
May 22, 2024
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.04.01
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.05.01

RUN apt-get update -y && \
apt-get install gcc libffi-dev -y && \
Expand Down
7 changes: 2 additions & 5 deletions chord_drs/constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from bento_lib.service_info.helpers import build_service_type
from chord_drs import __version__

__all__ = [
Expand All @@ -10,8 +11,4 @@
BENTO_SERVICE_KIND = "drs"
SERVICE_NAME = "Bento Data Repository Service"
SERVICE_ARTIFACT = BENTO_SERVICE_KIND
SERVICE_TYPE = {
"group": "ca.c3g.chord",
"artifact": SERVICE_ARTIFACT,
"version": __version__,
}
SERVICE_TYPE = build_service_type("ca.c3g.chord", SERVICE_ARTIFACT, __version__)
2 changes: 1 addition & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.04.01
FROM ghcr.io/bento-platform/bento_base_image:python-debian-2024.05.01

LABEL org.opencontainers.image.description="Local development image for Bento DRS."
LABEL devcontainer.metadata='[{ \
Expand Down
Loading