File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ COPY ./frontend/package.json .
3232COPY ./frontend/package-lock.json .
3333COPY ./frontend/tsconfig.json .
3434
35- RUN npm install && \
35+ RUN npm install --force && \
3636 npm run build
3737
3838FROM nginxinc/nginx-unprivileged:1.23.3-alpine
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ $ docker run --rm \
7979 -p 8080:8080 \
8080 -p 8081:8081 \
8181 -p 3000:80 \
82- ekofr/authz:v0.8.0 -standalone
82+ ekofr/authz:v0.8.1 -standalone
8383```
8484
8585Here, we use SQLite in-memory as database.
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ $ docker run --rm \
1919 -p 8080:8080 \
2020 -p 8081:8081 \
2121 -p 3000:80 \
22- ekofr/authz:v0.8.0 -standalone
22+ ekofr/authz:v0.8.1 -standalone
2323```
2424
2525Here, we are forwarding the 3 following ports:
@@ -44,15 +44,15 @@ $ docker run --rm \
4444 -e database_name=:memory: \
4545 -p 8080:8080 \
4646 -p 8081:8081 \
47- ekofr/authz:v0.8.0 -backend
47+ ekofr/authz:v0.8.1 -backend
4848```
4949
5050and the frontend:
5151
5252``` bash
5353$ docker run --rm \
5454 -p 3000:80 \
55- ekofr/authz:v0.8.0 -frontend
55+ ekofr/authz:v0.8.1 -frontend
5656```
5757
5858## Build from sources
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ COPY ./package.json .
88COPY ./package-lock.json .
99COPY ./tsconfig.json .
1010
11- RUN npm install && \
11+ RUN npm install --force && \
1212 npm run build
1313
1414FROM nginxinc/nginx-unprivileged:1.23-alpine
You can’t perform that action at this time.
0 commit comments