Skip to content

Commit

Permalink
trigger build pg 15 16 and template - use native python pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
justb4 committed Apr 5, 2024
1 parent 0e58a00 commit 533e900
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 15/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM postgres:15-alpine

LABEL maintainer="Just van den Broecke <justb4@gmail.com>"

RUN apk add --no-cache --update gettext python3 py3-pip && pip3 install click docker && mkdir /pgbackup
RUN apk add --no-cache --update gettext python3 py3-click py3-docker-py && mkdir /pgbackup

ENV PGB_SCHEDULE 0 23 * * *

Expand Down
2 changes: 1 addition & 1 deletion 16/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM postgres:16-alpine

LABEL maintainer="Just van den Broecke <justb4@gmail.com>"

RUN apk add --no-cache --update gettext python3 py3-pip && pip3 install click docker && mkdir /pgbackup
RUN apk add --no-cache --update gettext python3 py3-click py3-docker-py && mkdir /pgbackup

ENV PGB_SCHEDULE 0 23 * * *

Expand Down
3 changes: 2 additions & 1 deletion template/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ FROM postgres:$POSTGRES_VERSION-alpine

LABEL maintainer="Just van den Broecke <justb4@gmail.com>"

RUN apk add --no-cache --update gettext python3 py3-pip && pip3 install click docker && mkdir /pgbackup
# OLD: upto v13 - CHECK - RUN apk add --no-cache --update gettext python3 py3-pip && pip3 install click docker && mkdir /pgbackup
RUN apk add --no-cache --update gettext python3 py3-click py3-docker-py && mkdir /pgbackup

ENV PGB_SCHEDULE 0 23 * * *

Expand Down

0 comments on commit 533e900

Please sign in to comment.