Skip to content

Commit

Permalink
Django 5: Packages & Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
geordi committed Nov 18, 2023
1 parent ef2205c commit 1738409
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM python:3.9
FROM python:3.12

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1

RUN apt-get update && apt-get install -y libsasl2-dev libgraphviz-dev graphviz pandoc

COPY requirements.txt /kelvin/requirements.txt
RUN pip install --upgrade pip
RUN pip install -r /kelvin/requirements.txt

RUN apt-get update \
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
beautifulsoup4==4.11.1
bokeh==2.3.2
cssselect
django-cas-ng==4.2.1
django-cas-ng==5.0.1
django-notifications-hq
django-redis-cache==2.1.1
django-rq==2.3.2
django-rq==2.8.1
django-webpush==0.3.2
django==3.1.14
Django==5.0b1
imageio==2.6.1
Jinja2==2.11.3
MarkupSafe==2.0.1
mosspy==1.0.9
networkx==2.5
numpy==1.24.1
numpy==1.26.1
oauthlib==3.2.2
pandas==1.5.3
psycopg2
pygraphviz==1.7
pyserde==0.12.2
python-magic==0.4.27
pyyaml==5.4
pyyaml==6.0.1
readwise-django-rq-scheduler==1.2.1
requests==2.31.0
requests_oauthlib==1.3.1
Expand Down

0 comments on commit 1738409

Please sign in to comment.