Skip to content

Commit 28fd3b0

Browse files
authored
feat: Add build parallelism (#64)
* feat: Add build paralellism * fix: Fix parallel argument
1 parent 60d06ec commit 28fd3b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dockerfiles/ubuntu-2204-lts/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ ARG GAP_USER_USERNAME
171171
ARG GAP_USER_GROUPNAME
172172

173173
WORKDIR "${GAP_USER_HOMEDIR}/gap-${GAP_VERSION}/pkg/"
174-
RUN "../bin/BuildPackages.sh"
174+
RUN ../bin/BuildPackages.sh --parallel
175175

176176
FROM base AS slim
177177

@@ -205,4 +205,4 @@ ENV LD_LIBRARY_PATH="${GAP_USER_HOMEDIR}/gap-${GAP_VERSION}/lib"
205205
USER ${GAP_USER_USERNAME}
206206

207207
COPY --chown=${GAP_USER_USERNAME}:${GAP_USER_GROUPNAME} --from=buildfull "${GAP_USER_HOMEDIR}/gap-${GAP_VERSION}/" "${GAP_USER_HOMEDIR}/gap-${GAP_VERSION}//"
208-
CMD [ "bash" ]
208+
CMD [ "bash" ]

0 commit comments

Comments
 (0)