File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -29,21 +29,27 @@ in the GitHub organization https://github.com/eclipse-tractusx:
29
29
30
30
* https://github.com/eclipse-tractusx/puris
31
31
32
-
33
32
## Third-party Content
34
33
35
34
This project leverages the following third party content.
36
35
37
36
See ` DEPENDENCIES_FRONTEND ` and ` DEPENDENCIES_BACKEND ` file. Further, the following third-party content is used that
38
37
isn't listed in any DEPENDENCIES file:
39
38
40
- Keycloak initial realm setup
39
+ [ Keycloak initial realm setup] ( ./local/miw/keycloak-setup.json )
40
+
41
41
* SPDX-License-Identifier: Apache-2.0
42
42
* SPDX-FileCopyrightText: https://github.com/eclipse-tractusx/managed-identity-wallet/blob/main/LICENSE
43
43
* Source URL: https://github.com/eclipse-tractusx/managed-identity-wallet
44
44
45
+ [ Frontend license information substitution script] ( ./frontend/scripts/legal-notice.sh )
46
+
47
+ * SPDX-License-Identifier: Apache-2.0
48
+ * SPDX-FileCopyrightText: https://github.com/eclipse-tractusx/portal-frontend/blob/v2.0.0-RC8/scripts/legal-notice.sh
49
+ * Source URL: https://github.com/eclipse-tractusx/portal-frontend/
45
50
46
51
feather (4.29)
52
+
47
53
* License: MIT License
48
54
* Licence Path: https://github.com/feathericons/feather/blob/master/LICENSE
49
55
* Project URL: https://feathericons.com/
Original file line number Diff line number Diff line change 22
22
# uses 101 restricted user
23
23
FROM nginxinc/nginx-unprivileged:alpine
24
24
# Copy Legal information for distributions, the star ones are copied by workflow
25
- COPY DOCKER_NOTICE.md README.md NOTICE.md* SECURITY.md* LICENSE* DEPENDENCIES* /dist /
25
+ COPY DOCKER_NOTICE.md README.md NOTICE.md* SECURITY.md* LICENSE* DEPENDENCIES* /usr/share/nginx/html /
26
26
27
27
# commly it would be .../html/js/.*js, but due to the project structure the JS files are in .../html/assets
28
28
ENV JSFOLDER=/usr/share/nginx/html/assets/*.js
@@ -34,13 +34,16 @@ COPY ./nginx.conf /etc/nginx/nginx.conf
34
34
RUN chmod 777 /etc/nginx/nginx.conf
35
35
COPY ./start-nginx.sh /usr/bin/start-nginx.sh
36
36
37
+ WORKDIR /usr/share/nginx/html
38
+ COPY ./dist .
39
+ RUN chmod -R 777 ./
40
+ RUN ls -la ./
41
+
37
42
# use non-root user
38
43
USER 101
39
44
40
45
HEALTHCHECK --interval=30s --timeout=3s CMD wget -O /dev/null http://localhost:8080 || exit 1
41
46
42
- WORKDIR /usr/share/nginx/html
43
- COPY ./dist .
44
47
ENTRYPOINT [ "start-nginx.sh" ]
45
48
# nginx exposes at port 80
46
49
# nginx-unpriviledged exposes at port 8080
You can’t perform that action at this time.
0 commit comments