Skip to content

Commit fba9e4b

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 98283c4 + 43882d6 commit fba9e4b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ci:
33

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.5.0
6+
rev: v4.6.0
77
hooks:
88
- id: check-yaml
99
- id: end-of-file-fixer
@@ -17,13 +17,13 @@ repos:
1717
files: lib/
1818

1919
- repo: https://github.com/psf/black
20-
rev: 24.3.0
20+
rev: 24.8.0
2121
hooks:
2222
- id: black
2323
files: lib/
2424

2525
- repo: https://github.com/astral-sh/ruff-pre-commit
26-
rev: v0.3.4
26+
rev: v0.6.2
2727
hooks:
2828
- id: ruff
2929

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ FROM python:3.11-slim-bookworm
22

33
COPY requirements.txt /
44

5+
RUN \
6+
python3 -m pip install -r requirements.txt && rm -rf ~/.cache && rm requirements.txt
7+
58
ADD cs[s] /app/css
69
ADD im[g] /app/img
710
ADD j[s] /app/js
811
ADD l10[n] /app/l10n
912
ADD li[b] /app/lib
1013

11-
RUN \
12-
python3 -m pip install -r requirements.txt && rm -rf ~/.cache && rm requirements.txt
13-
1414
WORKDIR /app/lib
1515
ENTRYPOINT ["python3", "main.py"]

0 commit comments

Comments
 (0)