Skip to content

Commit 6fdfe4c

Browse files
committed
SBCOSS-399: updated docker file
1 parent 5bb9f4d commit 6fdfe4c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
FROM node:22.15-alpine
2-
RUN apk update \
3-
&& mkdir -p /opt/report
2+
RUN apk update && \
3+
apk add --no-cache git && \
4+
mkdir -p /opt/report
45
COPY . /opt/report/
56
WORKDIR /opt/report/
7+
RUN git submodule init && \
8+
git submodule update
69
RUN npm install
710
CMD ["npm", "run", "start", "&"]

0 commit comments

Comments
 (0)