Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 9, 2024
1 parent 673c431 commit edcec39
Show file tree
Hide file tree
Showing 4 changed files with 446 additions and 1,512 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:noble AS python-dependencies
RUN apt-get update && apt-get install --no-install-recommends --yes python3-pip python3-setuptools
COPY 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:16 AS yarn-dependencies
FROM node:22 AS yarn-dependencies
WORKDIR /srv
COPY . .
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn yarn install
Expand All @@ -22,7 +22,7 @@ RUN yarn run build

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

ENV LANG C.UTF-8
WORKDIR /srv
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@
},
"dependencies": {
"autoprefixer": "10.4.1",
"concurrently": "6.5.1",
"concurrently": "8.2.2",
"esbuild": "^0.20.1",
"postcss": "8.4.5",
"postcss-cli": "9.1.0",
"prettier": "2.5.1",
"postcss-cli": "11.0.0",
"prettier": "3.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "1.46.0",
"stylelint": "13.13.1",
"stylelint": "16.6.1",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "22.0.0",
"stylelint-order": "4.1.0",
"stylelint-prettier": "1.2.0",
"stylelint-scss": "3.21.0",
"stylelint-config-standard": "36.0.1",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.0",
"stylelint-scss": "6.4.0",
"vanilla-framework": "^4.9.0",
"watch-cli": "0.2.3"
}
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
canonicalwebteam.flask-base==1.0.5
django-openid-auth==0.16
github3.py==2.1.0
github3.py==4.0.1
Flask-OpenID==1.3.0
kubernetes==29.0.0
kubernetes==30.1.0
requests==2.27.1
Loading

0 comments on commit edcec39

Please sign in to comment.