We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd8fb3 commit ce029b9Copy full SHA for ce029b9
1 file changed
docker/Dockerfile
@@ -6,6 +6,15 @@ COPY --chown=node:node src/ src/
6
COPY --chown=node:node yarn.lock .
7
COPY --chown=node:node package.json .
8
COPY --chown=node:node .yarnrc.yml .
9
+COPY --chown=node:node .gitmodules .
10
+
11
+RUN apt-get update -y && \
12
+ apt-get install -y git
13
14
+RUN git config --global --add safe.directory /usr/src/app
15
+RUN git init
16
+RUN git submodule init
17
+RUN git submodule update
18
19
FROM base AS builder
20
COPY --chown=node:node tsconfig.json tsconfig.json
0 commit comments