-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add api-server to docker-compose
Documented the new instructions for setting up a dev environment.
- Loading branch information
1 parent
0a49c89
commit 86063e3
Showing
6 changed files
with
1,667 additions
and
18 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
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,8 +1,11 @@ | ||
FROM node:15.7.0-alpine3.12 | ||
FROM node:16-alpine | ||
WORKDIR /app | ||
|
||
COPY package.json /app/package.json | ||
RUN cd /app | ||
RUN npm install | ||
RUN npm install sequelize-cli | ||
RUN npm install -g nodemon | ||
COPY . . | ||
|
||
CMD ["node", "index.js"] |
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.