Skip to content

Commit 9e18277

Browse files
committed
security update express@4.21.2, cross-spawn@7.0.6
update to alpine@3.21 and nodejs@22 Signed-off-by: Stefan Seide <account-github@seide.st>
1 parent a92d4d2 commit 9e18277

File tree

4 files changed

+1517
-55
lines changed

4 files changed

+1517
-55
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
## Next Version
44
#### Bugfixes
5+
* update express from 4.21.1 to 4.21.2 (fix CVE-2024-52798)
6+
* update cross-spawn from 7.0.3 to 7.0.6 (fix CVE-2024-21538)
7+
* update base image to Alpine@3.21 and Node.js@22
8+
59
#### Enhancements
10+
* update ioredis from 5.4.1 to 5.5.0
611

712
## Version 0.9.0
813
#### Bugfixes

Dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.18
1+
FROM alpine:3.21
22

33
WORKDIR /redis-commander
44

@@ -22,7 +22,7 @@ RUN apk update \
2222
&& update-ca-certificates \
2323
&& echo -e "\n---- Create runtime user and fix file access rights ----------" \
2424
&& adduser "${SERVICE_USER}" -h "${HOME}" -G root -S -u 10000 \
25-
&& chown -R root.root "${HOME}" \
25+
&& chown -R root:root "${HOME}" \
2626
&& chown -R "${SERVICE_USER}" "${HOME}/config" \
2727
&& chmod g+w "${HOME}/config" \
2828
&& chmod ug+r,o-rwx "${HOME}"/config/*.json \
@@ -42,4 +42,3 @@ ENTRYPOINT ["/usr/bin/dumb-init", "--"]
4242
CMD ["/redis-commander/docker/entrypoint.sh"]
4343

4444
EXPOSE 8081
45-

0 commit comments

Comments
 (0)