Skip to content

Commit

Permalink
[DSW-1574] Fix security vulnerabilities in base image
Browse files Browse the repository at this point in the history
  • Loading branch information
janslifka committed Nov 14, 2022
1 parent 91ca218 commit 8268413
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion engine-wizard/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ FROM nginx:alpine
# Install alpine-pkg-glibc for dart-sass
RUN wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub
RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.34-r0/glibc-2.34-r0.apk
RUN apk add glibc-2.34-r0.apk

# Fix for https://github.com/sgerrand/alpine-pkg-glibc/issues/185
RUN apk add --force-overwrite glibc-2.34-r0.apk
RUN apk fix --force-overwrite alpine-baselayout-data

# Install dart-sass
RUN wget https://github.com/sass/dart-sass/releases/download/1.55.0/dart-sass-1.55.0-linux-x64.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "engine-frontend",
"version": "3.17.0",
"version": "3.17.1",
"repository": "https://github.com/ds-wizard/engine-frontend",
"license": "Apache-2.0",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion wizard-style-builder/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion wizard-style-builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wizard-style-builder",
"version": "3.17.0",
"version": "3.17.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 8268413

Please sign in to comment.