Add Dockerfile
This commit is contained in:
parent
45a9786e3c
commit
b392bf60fa
|
@ -0,0 +1,8 @@
|
|||
FROM node:20-alpine
|
||||
|
||||
ADD package.json package-lock.json tsconfig.json nest-cli.json .prettierrc ./
|
||||
ADD src/ ./src/
|
||||
|
||||
RUN npm install
|
||||
|
||||
CMD ["npm", "start"]
|
10
README.md
10
README.md
|
@ -28,8 +28,16 @@
|
|||
|
||||
## Installation
|
||||
|
||||
First make sure you are using the correct version of `node`
|
||||
|
||||
```bash
|
||||
$ npm install
|
||||
nvm install
|
||||
```
|
||||
|
||||
Then install the project
|
||||
|
||||
```bash
|
||||
npm install
|
||||
```
|
||||
|
||||
## Running the app
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue