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 Jan 21, 2024
1 parent 715e06b commit 3c2ac1c
Show file tree
Hide file tree
Showing 4 changed files with 608 additions and 1,407 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-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:21 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-css

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

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 @@ -16,17 +16,17 @@
},
"dependencies": {
"autoprefixer": "10.4.1",
"concurrently": "6.5.1",
"concurrently": "8.2.2",
"postcss": "8.4.5",
"postcss-cli": "9.1.0",
"prettier": "2.5.1",
"postcss-cli": "11.0.0",
"prettier": "3.2.4",
"sass": "1.46.0",
"stylelint": "13.13.1",
"stylelint": "16.2.0",
"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.0",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.0",
"stylelint-scss": "6.1.0",
"vanilla-framework": "3.6.1",
"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==18.20.0
kubernetes==29.0.0
requests==2.27.1
Loading

0 comments on commit 3c2ac1c

Please sign in to comment.