aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-21 02:11:32 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-12-21 02:11:32 -0800
commit5be558ef154b775f10eef7720bdcc36c73e68221 (patch)
tree6d6e62ed90c4cd49d6c6436ea296b8d1de61c80f
parenta7116cf353482cc2088445eca374c23867b73613 (diff)
downloadbun-5be558ef154b775f10eef7720bdcc36c73e68221.tar.gz
bun-5be558ef154b775f10eef7720bdcc36c73e68221.tar.zst
bun-5be558ef154b775f10eef7720bdcc36c73e68221.zip
Update Dockerfile
-rw-r--r--zig-build/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/zig-build/Dockerfile b/zig-build/Dockerfile
index 2f1377fd5..05a6f1738 100644
--- a/zig-build/Dockerfile
+++ b/zig-build/Dockerfile
@@ -42,6 +42,8 @@ RUN update-alternatives --install /usr/bin/ld ld /usr/bin/lld-12 90 && \
ENV CC=clang-12
ENV CXX=clang++-12
+RUN mkdir /output;
+
# Compile zig
RUN --mount=type=tmpfs,target=/zig-build \
cd /zig-build && \
@@ -54,7 +56,7 @@ RUN --mount=type=tmpfs,target=/zig-build \
rm -rf .git; \
cd /zig-build; \
zip -r zig.zip zig; \
- mv zig.zip /home/ubuntu/zig.zip
+ cp zig.zip /output;