Skip to content

Instantly share code, notes, and snippets.

@dgavshin
Created December 3, 2021 16:06
Show Gist options
  • Save dgavshin/2def01610e6bffbd8a3e64083740d875 to your computer and use it in GitHub Desktop.
Save dgavshin/2def01610e6bffbd8a3e64083740d875 to your computer and use it in GitHub Desktop.
This patch repair Packmate application
index c34419c..e0a101a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
src/main/resources/static/*
*.pcap
docker/postgres_data
+/data/
HELP.md
.gradle
diff --git a/docker/Dockerfile_app b/docker/Dockerfile_app
index 36cee06..027543e 100644
--- a/docker/Dockerfile_app
+++ b/docker/Dockerfile_app
@@ -1,6 +1,7 @@
FROM node:current-alpine
WORKDIR /tmp/build/
COPY ./frontend/ .
+ENV NODE_OPTIONS=--openssl-legacy-provider
RUN npm install && npm run build
FROM adoptopenjdk/openjdk15:alpine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment