Skip to content

Commit

Permalink
Bumped version to v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eko committed Mar 19, 2023
1 parent 3faac6f commit 959add4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ COPY ./frontend/package.json .
COPY ./frontend/package-lock.json .
COPY ./frontend/tsconfig.json .

RUN npm install && \
RUN npm install --force && \
npm run build

FROM nginxinc/nginx-unprivileged:1.23.3-alpine
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ $ docker run --rm \
-p 8080:8080 \
-p 8081:8081 \
-p 3000:80 \
ekofr/authz:v0.8.0-standalone
ekofr/authz:v0.8.1-standalone
```

Here, we use SQLite in-memory as database.
Expand Down
6 changes: 3 additions & 3 deletions docs/architecture/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ docker run --rm \
-p 8080:8080 \
-p 8081:8081 \
-p 3000:80 \
ekofr/authz:v0.8.0-standalone
ekofr/authz:v0.8.1-standalone
```

Here, we are forwarding the 3 following ports:
Expand All @@ -44,15 +44,15 @@ $ docker run --rm \
-e database_name=:memory: \
-p 8080:8080 \
-p 8081:8081 \
ekofr/authz:v0.8.0-backend
ekofr/authz:v0.8.1-backend
```

and the frontend:

```bash
$ docker run --rm \
-p 3000:80 \
ekofr/authz:v0.8.0-frontend
ekofr/authz:v0.8.1-frontend
```

## Build from sources
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COPY ./package.json .
COPY ./package-lock.json .
COPY ./tsconfig.json .

RUN npm install && \
RUN npm install --force && \
npm run build

FROM nginxinc/nginx-unprivileged:1.23-alpine
Expand Down

0 comments on commit 959add4

Please sign in to comment.