Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanneuhaus committed Jan 17, 2023
1 parent 0494b6f commit 5a09915
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stable-20221219-slim AS supercronic
FROM debian:stable-20230109-slim AS supercronic

ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.1/supercronic-linux-amd64 \
SUPERCRONIC=supercronic-linux-amd64 \
Expand All @@ -13,7 +13,7 @@ RUN apt-get update; apt-get install -y curl \



FROM mysql:5.7.40-debian
FROM mysql:5.7.41-debian

LABEL maintainer="Stefan Neuhaus <[email protected]>"

Expand Down
4 changes: 3 additions & 1 deletion overlays/docker-entrypoint-initdb.d/initialize_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ INSERT INTO cpeEcosystemCache (vendor, product, ecosystem) VALUES ('scikit-learn
INSERT INTO cpeEcosystemCache (vendor, product, ecosystem) VALUES ('unicode', 'international_components_for_unicode', 'MULTIPLE');
INSERT INTO cpeEcosystemCache (vendor, product, ecosystem) VALUES ('icu-project', 'international_components_for_unicode', 'MULTIPLE');

CREATE TABLE knownExploited (cveID varchar(20) PRIMARY KEY ,
CREATE TABLE knownExploited (cveID varchar(20) PRIMARY KEY,
vendorProject VARCHAR(255),
product VARCHAR(255),
vulnerabilityName VARCHAR(500),
Expand Down Expand Up @@ -259,6 +259,7 @@ BEGIN
SET SQL_SAFE_UPDATES = @OLD_SQL_SAFE_UPDATES;
END //


CREATE PROCEDURE merge_knownexploited
(IN p_cveID varchar(20),
IN p_vendorProject VARCHAR(255),
Expand All @@ -279,6 +280,7 @@ INSERT INTO knownExploited (`cveID`, `vendorProject`, `product`, `vulnerabilityN
`shortDescription`=p_shortDescription, `requiredAction`=p_requiredAction,
`dueDate`=p_dueDate, `notes`=p_notes;
END //

DELIMITER ;

INSERT INTO properties(id, value) VALUES ('version', '5.4');

0 comments on commit 5a09915

Please sign in to comment.