Skip to content

Commit

Permalink
update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
endakelly committed Jul 19, 2024
1 parent ba7dfaf commit 442c076
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.12-slim

RUN apt-get update && apt-get install -y --no-install-recommends \
git \
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ services:
tty: true

db:
image: "postgres:11.2"
image: "postgres:14.12"
container_name: postgres
env_file: .env
volumes:
- postgres_data:/var/lib/postgresql/data/
networks:
Expand Down
5 changes: 2 additions & 3 deletions incidentresponse/incidentresponse/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import include, path
from django.conf.urls import url
from django.urls import include, path, re_path

urlpatterns = [
path('slack/', include('response.slack.urls')),
path('core/', include('response.core.urls')),
url(r'^health(/liveness|/readiness)?', include('health_check.urls')),
re_path(r'^health(/liveness|/readiness)?$', include('health_check.urls')),
path('', include('response.ui.urls')),
]
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
beautifulsoup4==4.12.3
bleach==4.0.0
bleach==6.1.0
bleach-whitelist>=0.0.11
certifi==2024.7.4
cffi==1.16.0
chardet==3.0.4
cryptography==42.0.8
Django==2.2.9
Django==5.0.7
django-after-response==0.2.2
django-bootstrap4==22.1
django-health-check==3.12.1
djangorestframework==3.13.1
django-bootstrap4==24.3
django-health-check==3.18.3
djangorestframework==3.15.2
emoji-data-python==1.5.0
gunicorn==22.0.0
git+https://github.com/hmcts/[email protected].7#egg=response
git+https://github.com/hmcts/[email protected].8#egg=response
idna==3.7
jsonfield==3.1.0
markdown2==2.4.13
markdown2==2.5.0
munch==2.5.0
psycopg2-binary==2.9.9
pycparser==2.20
python-slugify==8.0.4
pytz==2020.5
requests==2.31.0
six==1.16.0
slackclient==1.3.1
slack_sdk==3.31.0
soupsieve==2.0.1
sqlparse==0.4.3
text-unidecode==1.3
Expand Down

0 comments on commit 442c076

Please sign in to comment.