Skip to content

Commit

Permalink
Update isle-bagger v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferya committed Jun 3, 2024
1 parent 3aad069 commit 001439f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ SITE=https://islandora.dev

# Environment for the Islandora Bagger container
BAGGER_REPOSITORY=ghcr.io/cwrc
BAGGER_TAG=latest
BAGGER_TAG=local

# Update Islandora REST endpoint and register bag creation
BAGGER_DEFAULT_PER_BAG_REGISTER_BAGS_WITH_ISLANDORA=false
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG BAGGER_TAG
# ---------------------------
# Base build layer
# ---------------------------
FROM --platform=$BUILDPLATFORM ${BAGGER_REPOSITORY:-ghcr.io/cwrc}/isle-bagger:${BAGGER_TAG:-v0.0.3} as base
FROM --platform=$BUILDPLATFORM ${BAGGER_REPOSITORY:-ghcr.io/cwrc}/isle-bagger:${BAGGER_TAG:-v0.0.4} as base

# Install packages and tools that allow for basic python install.
# python-keystoneclient requirements
Expand Down Expand Up @@ -47,7 +47,7 @@ RUN \
# Production layer
# ---------------------------

FROM --platform=$BUILDPLATFORM ${BAGGER_REPOSITORY:-ghcr.io/cwrc}/isle-bagger:${BAGGER_TAG:-v0.0.3} as prod
FROM --platform=$BUILDPLATFORM ${BAGGER_REPOSITORY:-ghcr.io/cwrc}/isle-bagger:${BAGGER_TAG:-v0.0.4} as prod

# Install packages and tools that allow for basic downloads.
# cleanup unused base image components
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Note: if wanting to test [leaf-isle-bagger] and [isle-bagger] locally
- `docker compose up -d` to run the container
- `docker compose exec bagger with-contenv bash` to shell into the container

See the following as an alternative to specifying an OCI image registry and tag in the Dockerfile: <https://docs.docker.com/build/bake/reference/>. As an example, see [isle-buildkit] `bake.hcl`.
See the following as an alternative to specifying an OCI image registry and tag in the Dockerfile: <https://docs.docker.com/build/bake/reference/>. As an example, see [isle-buildkit] `docker-bake.hcl`.

---

Expand Down
6 changes: 6 additions & 0 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
target "leaf-bagger" {
dockerfile = "Dockerfile"
args = {
BAGGER_TAG = "v0.0.4@sha256:668e47efe49280eeef0b004eb11a2d380804d02e333ad24568061e846fe7fb80"
}
}

0 comments on commit 001439f

Please sign in to comment.