-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added custom postgres image, removed gosu
- Loading branch information
Showing
3 changed files
with
383 additions
and
12 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
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,13 @@ | ||
# FROM postgres:16 | ||
FROM postgres:17.0-alpine3.20 | ||
|
||
RUN apk update && \ | ||
apk upgrade --available | ||
|
||
RUN apk add --upgrade apk-tools bash su-exec | ||
|
||
COPY docker-entrypoint.sh /usr/local/bin/ | ||
|
||
RUN chmod +x /usr/local/bin/docker-entrypoint.sh | ||
|
||
RUN rm /usr/local/bin/gosu |
Oops, something went wrong.