Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Feb 12, 2024
1 parent 6f0436f commit 1c46ef9
Show file tree
Hide file tree
Showing 5 changed files with 1,003 additions and 476 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

# Build stage: Install python dependencies
# ===
FROM ubuntu:focal AS python-dependencies
FROM ubuntu:jammy AS python-dependencies
RUN apt-get update && apt-get install --no-install-recommends --yes python3 python3-setuptools python3-pip
ADD requirements.txt /tmp/requirements.txt
RUN pip3 config set global.disable-pip-version-check true
RUN --mount=type=cache,target=/root/.cache/pip pip3 install --user --requirement /tmp/requirements.txt

# Build stage: Install yarn dependencies
# ===
FROM node:19 AS yarn-dependencies
FROM node:21 AS yarn-dependencies
WORKDIR /srv
ADD package.json yarn.lock .
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn yarn install
Expand All @@ -29,7 +29,7 @@ RUN yarn run build

# Build the production image
# ===
FROM ubuntu:focal
FROM ubuntu:jammy

# Install python and import python dependencies
RUN apt-get update && apt-get install --no-install-recommends --yes python3 python3-setuptools ca-certificates libsodium-dev python3-lib2to3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.update
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:experimental

FROM ubuntu:focal
FROM ubuntu:jammy

# Install required system packages for our CronJob
RUN apt-get update && apt-get install --yes --no-install-recommends python3-pip python3-setuptools python3-dev python3-wheel
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"dependencies": {
"@canonical/react-components": "0.42.0",
"autoprefixer": "10.4.13",
"clsx": "^1.2.1",
"concurrently": "^7.1.0",
"clsx": "^2.0.0",
"concurrently": "^8.0.0",
"focus-trap-react": "10.0.2",
"formik": "^2.2.9",
"qs": "^6.11.0",
Expand All @@ -31,18 +31,18 @@
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^3.0.0",
"@vitejs/plugin-react": "^4.0.0",
"babel-jest": "^29.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"typescript": "^4.6.4",
"vite": "^4.0.0"
"typescript": "^5.0.0",
"vite": "^5.0.0"
}
}
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ django-openid-auth==0.17
Flask-OpenID==1.3.0
beautifulsoup4==4.11.1
python-dateutil==2.8.2
lxml==4.9.2
lxml==5.1.0
cachetools==5.3.0
black==23.1.0
flake8==6.0.0
black==24.2.0
flake8==7.0.0
tenacity==8.2.3
Loading

0 comments on commit 1c46ef9

Please sign in to comment.