-
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
2 changed files
with
21 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
### This Dockerfile is used to extend the app-sec blessed Docker image for JRE-17 | ||
### We extend the base image to include a PostgreSQL client -- the client is primarily used | ||
### for pg_dump commands to backup/restore the database. | ||
|
||
### Sourced from https://github.com/broadinstitute/dsp-appsec-blessed-images/blob/main/jre/Dockerfile.17-debian | ||
FROM us.gcr.io/broad-dsp-gcr-public/base/jre:17-debian | ||
|
||
# Add postgres client for pg_dump command and clean up | ||
RUN apt-get update \ | ||
&& apt-get install postgresql-client-14 -y --no-install-recommends \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* |
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