Skip to content

Commit

Permalink
Chore: Add label auther details
Browse files Browse the repository at this point in the history
  • Loading branch information
jsugarman committed Jan 7, 2025
1 parent 9fe3f3a commit e19630a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
FROM ministryofjustice/apply-base:latest-3.4.1
LABEL org.opencontainers.image.authors="apply for legal aid team"

LABEL org.opencontainers.image.vendor="Ministry of Justice" \
org.opencontainers.image.authors="Apply for civil legal aid team ([email protected])" \
org.opencontainers.image.title="Apply for civil legal aid" \
org.opencontainers.image.description="Web service to apply for legal aid in civil matters" \
org.opencontainers.image.url="https://github.com/ministryofjustice/laa-apply-for-legal-aid"

# add non-root user and group with alpine first available uid, 1000
RUN addgroup -g 1000 -S appgroup \
Expand Down
7 changes: 6 additions & 1 deletion docker/apply_base.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
FROM ruby:3.4.1-alpine3.21
LABEL org.opencontainers.image.authors="apply for legal aid team"

LABEL org.opencontainers.image.vendor="Ministry of Justice" \
org.opencontainers.image.authors="Apply for civil legal aid team ([email protected])" \
org.opencontainers.image.title="Apply for civil legal aid - base image" \
org.opencontainers.image.description="Web service to apply for legal aid in civil matters" \
org.opencontainers.image.url="https://github.com/ministryofjustice/laa-apply-for-legal-aid"

# fail early and print all commands
RUN set -ex
Expand Down
6 changes: 6 additions & 0 deletions docker/apply_ci.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
FROM cimg/ruby:3.4.1-browsers
LABEL org.opencontainers.image.authors="apply for legal aid team"

LABEL org.opencontainers.image.vendor="Ministry of Justice" \
org.opencontainers.image.authors="Apply for civil legal aid team ([email protected])" \
org.opencontainers.image.title="Apply for civil legal aid - CI image" \
org.opencontainers.image.description="Minimal apply for civl legal aid image used as test executor in CI pipeline" \
org.opencontainers.image.url="https://github.com/ministryofjustice/laa-apply-for-legal-aid"

RUN wget https://mirrors.kernel.org/ubuntu/pool/main/libf/libffi/libffi6_3.2.1-8_amd64.deb -O /tmp/libffi6_3.2.1-8_amd64.deb
RUN sudo apt-get update
RUN sudo apt install --no-install-recommends /tmp/libffi6_3.2.1-8_amd64.deb
Expand Down

0 comments on commit e19630a

Please sign in to comment.