There was an error while loading. Please reload this page.
1 parent d1c6568 commit fcf43fdCopy full SHA for fcf43fd
2 files changed
Dockerfile
@@ -84,7 +84,7 @@ RUN sudo mkdir /app
84
RUN sudo chown -R $USER /app
85
86
# Get source code (clone from GitHub or copy local files)
87
-COPY . /app/local-source/
+COPY --chown=$USER:$USER . /app/local-source/
88
RUN if [ "$SOURCE" = "local" ]; then \
89
cp -r /app/local-source/. /app/ && rm -rf /app/local-source; \
90
else \
reproducibility/verify_build.sh
@@ -284,6 +284,7 @@ buildFormat="apk"
284
cd "$REPO_ROOT"
285
$CONTAINER_CMD build \
286
--network=host \
287
+ --ulimit nofile=65536:65536 \
288
--build-arg VERSION="v${appVersion}" \
289
--build-arg MODE=release \
290
--build-arg FORMAT="$buildFormat" \
0 commit comments