Skip to content

Commit 959add4

Browse files
committed
Bumped version to v0.8.1
1 parent 3faac6f commit 959add4

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Dockerfile.standalone

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ COPY ./frontend/package.json .
3232
COPY ./frontend/package-lock.json .
3333
COPY ./frontend/tsconfig.json .
3434

35-
RUN npm install && \
35+
RUN npm install --force && \
3636
npm run build
3737

3838
FROM nginxinc/nginx-unprivileged:1.23.3-alpine

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

8585
Here, we use SQLite in-memory as database.

docs/architecture/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

2525
Here, 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

5050
and 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

frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COPY ./package.json .
88
COPY ./package-lock.json .
99
COPY ./tsconfig.json .
1010

11-
RUN npm install && \
11+
RUN npm install --force && \
1212
npm run build
1313

1414
FROM nginxinc/nginx-unprivileged:1.23-alpine

0 commit comments

Comments
 (0)