Skip to content

Commit a4f6abe

Browse files
committed
feat: add Dockerfile for building application image
1 parent 419ddcc commit a4f6abe

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM node:20-slim
2+
3+
WORKDIR /opt
4+
COPY . .
5+
6+
RUN npm install
7+
RUN npm run build

0 commit comments

Comments
 (0)