-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|