Skip to content

Commit

Permalink
feat: upgrade example and docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
sgomez committed Jul 3, 2023
1 parent 456e5f9 commit f1d5b9f
Show file tree
Hide file tree
Showing 36 changed files with 2,059 additions and 9,256 deletions.
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
FROM node:16
FROM node:18

WORKDIR /app
WORKDIR /app/

COPY example/package.json example/package-lock.json /app/
RUN npm install

COPY example/*.json /app/
COPY example/src/ /app/src/
COPY example/ /app/
COPY src/ /app/src/nestjs-eventstore/

CMD [ "npm", "run", "start:dev" ]
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.6'

services:
eventstore.db:
image: eventstore/eventstore:22.6.0-buster-slim
image: eventstore/eventstore:22.10.2-buster-slim
environment:
- EVENTSTORE_CLUSTER_SIZE=1
- EVENTSTORE_RUN_PROJECTIONS=All
Expand Down
Loading

0 comments on commit f1d5b9f

Please sign in to comment.