Skip to content
This repository has been archived by the owner on May 20, 2022. It is now read-only.

Upgrade Postgres to 10 for 5.33.0 #529

Merged
merged 1 commit into from
Jun 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions db/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM postgres:9.4-alpine
FROM postgres:10-alpine

ENV DEFAULT_TIMEZONE UTC
# Mandatory nowdays with PG 10
ENV WAL_LEVEL logical

# Install some packages to use WAL
RUN echo "azure<5.0.0" > pip-constraints.txt
Expand All @@ -10,8 +12,8 @@ RUN apk add --no-cache \
libc6-compat \
libffi-dev \
linux-headers \
python-dev \
py-pip \
python3-dev \
py3-pip \
py-cryptography \
pv \
libressl-dev \
Expand Down