-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgrade example and docker image
- Loading branch information
Showing
36 changed files
with
2,059 additions
and
9,256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.