Skip to content

Commit

Permalink
Upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
RineshRamadhin committed Feb 25, 2023
1 parent 9520908 commit 0d5857e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
5 changes: 1 addition & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include:
- template: Security/SAST.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml

image: docker:20.10.6
image: docker/compose:latest

services:
- docker:dind
Expand All @@ -20,9 +20,6 @@ cache:

smoke test docker containers:
stage: test
before_script:
- apk add py-pip python3-dev libffi-dev openssl-dev gcc libc-dev make rust cargo
- pip install docker-compose
script:
- docker-compose up -d
- docker ps
Expand Down
6 changes: 3 additions & 3 deletions compose/django/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ RUN apt-get purge python python3 -y
WORKDIR /install
RUN apt-get install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libsqlite3-dev \
libreadline-dev libffi-dev curl libbz2-dev -y
RUN wget https://www.python.org/ftp/python/3.11.0/Python-3.11.0.tar.xz
RUN tar -xf Python-3.11.0.tar.xz
RUN wget https://www.python.org/ftp/python/3.11.2/Python-3.11.2.tar.xz
RUN tar -xf Python-3.11.2.tar.xz

# Configure Python
WORKDIR /install/Python-3.11.0
WORKDIR /install/Python-3.11.2
RUN ./configure --enable-optimizations
RUN make install

Expand Down
2 changes: 1 addition & 1 deletion compose/selenium/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11.0-buster
FROM python:3.11.2-buster

# Setup labels
LABEL version = "1.0"
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
psycopg2==2.9.5

django==4.1.3
django==4.1.7
djangorestframework==3.14.0
django-cors-headers==3.13.0
django-polymorphic==3.1.0
django-rest-polymorphic==0.1.10
django-filter==22.1

sentry-sdk==1.11.0
whitenoise==6.2.0
sentry-sdk==1.15.0
whitenoise==6.4.0
daphne==4.0.0
channels==4.0.0
channels-redis==4.0.0
requests==2.28.1
requests==2.28.2
markdown==3.4.1
celery==5.2.7
redis==4.3.4
redis==4.5.1

yt-dlp==2022.11.11
yt-dlp==2023.2.17
python-qbittorrent==0.4.3
selenium==4.6.0
selenium==4.8.2

0 comments on commit 0d5857e

Please sign in to comment.