Created
December 3, 2021 16:06
-
-
Save dgavshin/2def01610e6bffbd8a3e64083740d875 to your computer and use it in GitHub Desktop.
This patch repair Packmate application
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
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