Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
fixed:
- Fixed deploy Dockerfile by replacing stale base Docker image (Python 3.10) with python:3.11 directly.
4 changes: 3 additions & 1 deletion gcp/policyengine_api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM policyengine/policyengine-api:latest
FROM python:3.11

RUN apt-get update && apt-get install -y build-essential redis-server && rm -rf /var/lib/apt/lists/*

ENV GOOGLE_APPLICATION_CREDENTIALS .gac.json
ENV POLICYENGINE_DB_PASSWORD .dbpw
Expand Down
Loading