-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create dockerfile to build project image container
- Loading branch information
1 parent
996817b
commit c3e8226
Showing
3 changed files
with
28 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.git | ||
|
||
*/node_modules | ||
|
||
server/public |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM node:lts-alpine | ||
|
||
WORKDIR /app | ||
|
||
COPY package*.json ./ | ||
|
||
COPY client/package*.json client/ | ||
RUN npm run install-client --omit=dev | ||
|
||
COPY server/package*.json server/ | ||
RUN npm run install-server --omit=dev | ||
|
||
COPY client/ client/ | ||
RUN npm run build --prefix client | ||
|
||
COPY server/ server/ | ||
|
||
USER node | ||
|
||
CMD [ "npm", "start", "--prefix", "server" ] | ||
|
||
EXPOSE 8000 |
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