Add Dockerfile

This commit is contained in:
Ladd Hoffman 2023-06-22 18:11:55 -05:00
parent 45a9786e3c
commit b392bf60fa
4 changed files with 1503 additions and 1922 deletions

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
20

8
Dockerfile Normal file
View File

@ -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"]

View File

@ -28,8 +28,16 @@
## Installation ## Installation
First make sure you are using the correct version of `node`
```bash ```bash
$ npm install nvm install
```
Then install the project
```bash
npm install
``` ```
## Running the app ## Running the app

3406
package-lock.json generated

File diff suppressed because it is too large Load Diff