mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
fix freetype CVE
This commit is contained in:
parent
945241339a
commit
b78fd55427
2 changed files with 6 additions and 0 deletions
3
.github/workflows/prod.yml
vendored
3
.github/workflows/prod.yml
vendored
|
|
@ -113,6 +113,7 @@ jobs:
|
|||
- name: Check security vulnerabilities for BW
|
||||
uses: aquasecurity/trivy-action@master
|
||||
with:
|
||||
vuln-type: os
|
||||
image-ref: 10.20.1.1:5000/bw-tests:latest
|
||||
format: table
|
||||
exit-code: 1
|
||||
|
|
@ -122,6 +123,7 @@ jobs:
|
|||
- name: Check security vulnerabilities for autoconf
|
||||
uses: aquasecurity/trivy-action@master
|
||||
with:
|
||||
vuln-type: os
|
||||
image-ref: 10.20.1.1:5000/bw-autoconf-tests:latest
|
||||
format: table
|
||||
exit-code: 1
|
||||
|
|
@ -131,6 +133,7 @@ jobs:
|
|||
- name: Check security vulnerabilities for UI
|
||||
uses: aquasecurity/trivy-action@master
|
||||
with:
|
||||
vuln-type: os
|
||||
image-ref: 10.20.1.1:5000/bw-ui-tests:latest
|
||||
format: table
|
||||
exit-code: 1
|
||||
|
|
|
|||
|
|
@ -72,6 +72,9 @@ RUN apk add --no-cache bash python3 libgcc libstdc++ openssl git && \
|
|||
ln -s /proc/1/fd/1 /var/log/nginx/jobs.log && \
|
||||
ln -s /proc/1/fd/1 /var/log/letsencrypt/letsencrypt.log
|
||||
|
||||
# Fix CVE-2022-27405 and CVE-2022-27406
|
||||
RUN apk add "freetype>=2.10.4-r3"
|
||||
|
||||
VOLUME /data
|
||||
|
||||
EXPOSE 8080/tcp 8443/tcp
|
||||
|
|
|
|||
Loading…
Reference in a new issue