Skip to content

Commit ea3ba5e

Browse files
authored
Merge pull request #7 from KnowWhereGraph/develop
Double Slash & Security Fixes
2 parents 3ca9605 + d402574 commit ea3ba5e

File tree

6 files changed

+276
-125
lines changed

6 files changed

+276
-125
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,21 @@ This can also be done by using the Dockerfile for a more reliable build environm
6464
docker-compose -f docker-compose.stage.yaml up
6565
```
6666

67+
### Local
68+
69+
Builds that point to local GraphDB can be achieved with
70+
71+
72+
```
73+
ng build --configuration=local
74+
```
75+
76+
This can also be done by using the Dockerfile for a more reliable build environment with
77+
78+
```
79+
docker-compose -f docker-compose.local.yaml up
80+
```
81+
6782
## Developing
6883

6984
The standard Git Flow: create a feature branch off of the `develop` branch and make pull requests into it. For full releases, merge from the `develop` branch into `main`.

node-browser/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20.12-bullseye-slim
1+
FROM amd64/node:lts-buster-slim
22

33
RUN mkdir /app
44
WORKDIR /app

node-browser/docker-compose.local.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ services:
33
build: '.'
44
volumes:
55
- ./dist/:/app/dist/
6-
entrypoint: ["ng", "build", "--configuration=local"]
6+
entrypoint: ["ng","build","--configuration=local"]

0 commit comments

Comments
 (0)