-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dockerfile: Switch base image: python/3.11-alpine
psycopg2-binary stopped shipping for 3.6 and 3.7, so using RH's ubi8/ubi-minimal wasn't going to work anymore. ubi8/python-39 seemed promising, but it turns out that the UBI Python images don't allow package installs. Alpine is smaller, faster and more straightforward. Signed-off-by: Zack Cerza <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
#!/usr/bin/env sh | ||
set -ex | ||
trap exit TERM | ||
pecan populate config.py | ||
|