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 a12f47e commit e82d7d9Copy full SHA for e82d7d9
Dockerfile
@@ -18,8 +18,10 @@ RUN fab build:${BUILD_MODE}
18
19
FROM alpine:latest AS final
20
21
-COPY --from=builder --chown=33:33 /site/output /output
+COPY --from=builder /site/output /output
22
23
-RUN echo "Build date: $(date)" | tee -a /output/.build_info.txt
+RUN echo "Build date: $(date)" | tee -a /output/build_info.txt
24
25
-ENTRYPOINT ["sh", "-c", "cp -r /output/* /mnt && echo '✅ Copy done' || (echo '❌ Copy failed' && exit 1)"]
+RUN apk add --no-cache rsync
26
+
27
+ENTRYPOINT ["sh", "-c", "rsync -av /output/ /mnt/what-if/ && echo 'Copied'"]
0 commit comments