-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from lyes-s/openssl-vulnerability-cve-2022-2097
~ CVE-2022-2097 Fix
- Loading branch information
Showing
4 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
FROM flyway/flyway:8.5.11-alpine | ||
ADD sql_versions /flyway/sqlf | ||
ADD sql_versions /flyway/sqlf | ||
USER root | ||
RUN apk add --update --no-cache libcrypto1.1=1.1.1q-r0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
FROM grafana/grafana | ||
ADD provisioning /etc/grafana/provisioning | ||
ADD grafana.ini /etc/grafana/ | ||
ADD grafana.ini /etc/grafana | ||
USER root | ||
RUN apk add --update --no-cache libcrypto1.1=1.1.1q-r0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM amazoncorretto:11-alpine | |
LABEL [email protected] | ||
WORKDIR network-device-inventory-service | ||
COPY ./target/network-device-inventory-service-0.0.1-SNAPSHOT.jar network-device-inventory.jar | ||
RUN apk add --update && \ | ||
RUN apk add --update libcrypto1.1=1.1.1q-r0 && \ | ||
rm -rf /var/cache/apk/* | ||
EXPOSE 8080 | ||
ENTRYPOINT ["java","-jar","network-device-inventory.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM nginx:1.22-alpine | ||
ADD conf.d /etc/nginx/conf.d | ||
RUN apk add --update pcre2=10.40-r0 && \ | ||
curl=7.83.1-r2 && \ | ||
USER root | ||
RUN apk add --update libcrypto1.1=1.1.1q-r0 pcre2=10.40-r0 curl=7.83.1-r2 && \ | ||
rm -rf /var/cache/apk/* |