Skip to content

Commit

Permalink
build: roll back to python 3.12 (#100)
Browse files Browse the repository at this point in the history
psycopg2 postgres driver not compatible with 3.13 yet
  • Loading branch information
alubbock authored Oct 15, 2024
1 parent 59f2b73 commit 82b6e26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM quay.io/rosalindfranklininstitute/blast:2.16.0 AS blast

FROM python:3.13-bookworm AS builder
FROM python:3.12-bookworm AS builder

RUN pip install --upgrade pip wheel pipenv

Expand All @@ -23,7 +23,7 @@ COPY antigenapi /usr/src/antigenapi

RUN DJANGO_CI=true .venv/bin/python manage.py collectstatic --noinput

FROM python:3.13-slim-bookworm AS prod
FROM python:3.12-slim-bookworm AS prod

# liblmdb-dev required by BLAST
RUN apt-get update && apt-get install -y \
Expand Down

0 comments on commit 82b6e26

Please sign in to comment.