Skip to content

Commit

Permalink
chore: update dependencies + base image
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed May 22, 2024
1 parent 1d003fe commit 77fa2ec
Show file tree
Hide file tree
Showing 5 changed files with 509 additions and 511 deletions.
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

0 comments on commit 77fa2ec

Please sign in to comment.