aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar wangao <jameslahm17@gmail.com> 2022-04-19 12:19:03 +0800
committerGravatar GitHub <noreply@github.com> 2022-04-18 21:19:03 -0700
commit7e866bb441b1870d8d8e1916693f6acfaf7d8525 (patch)
treeb975080be5f585412f9dc87b0371132e6c5a902a
parentc2cf1d649352de3d4f73290b13995ef67308ee2a (diff)
downloadbun-7e866bb441b1870d8d8e1916693f6acfaf7d8525.tar.gz
bun-7e866bb441b1870d8d8e1916693f6acfaf7d8525.tar.zst
bun-7e866bb441b1870d8d8e1916693f6acfaf7d8525.zip
[build] Fix Dockerfile COPY slash (#147)
-rw-r--r--Dockerfile6
-rw-r--r--Dockerfile.musl4
2 files changed, 5 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index 0d90fe641..c83cdef24 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -144,8 +144,8 @@ ARG BUN_DIR=${GITHUB_WORKSPACE}/bun
COPY Makefile ${BUN_DIR}/Makefile
COPY src/deps/picohttpparser ${BUN_DIR}/src/deps/picohttpparser
-COPY src/deps/*.c ${BUN_DIR}/src/deps
-COPY src/deps/*.h ${BUN_DIR}/src/deps
+COPY src/deps/*.c ${BUN_DIR}/src/deps/
+COPY src/deps/*.h ${BUN_DIR}/src/deps/
WORKDIR $BUN_DIR
@@ -223,7 +223,7 @@ COPY --from=uws ${BUN_DEPS_OUT_DIR}/*.a ${BUN_DEPS_OUT_DIR}/
COPY --from=uws ${BUN_DEPS_OUT_DIR}/*.o ${BUN_DEPS_OUT_DIR}/
COPY --from=libbacktrace ${BUN_DEPS_OUT_DIR}/*.a ${BUN_DEPS_OUT_DIR}/
COPY --from=zlib ${BUN_DEPS_OUT_DIR}/*.a ${BUN_DEPS_OUT_DIR}/
-COPY --from=identifier_cache ${BUN_DIR}/src/js_lexer/*.blob ${BUN_DIR}/src/js_lexer
+COPY --from=identifier_cache ${BUN_DIR}/src/js_lexer/*.blob ${BUN_DIR}/src/js_lexer/
COPY --from=node_fallbacks ${BUN_DIR}/src/node-fallbacks/out ${BUN_DIR}/src/node-fallbacks/out
WORKDIR ${BUN_DIR}
diff --git a/Dockerfile.musl b/Dockerfile.musl
index 0502236cd..ce198eaa6 100644
--- a/Dockerfile.musl
+++ b/Dockerfile.musl
@@ -56,8 +56,8 @@
# FROM bun_base as picohttp
# COPY src/deps/picohttpparser /bun/src/deps/picohttpparser
-# COPY src/deps/*.c /bun/src/deps
-# COPY src/deps/*.h /bun/src/deps
+# COPY src/deps/*.c /bun/src/deps/
+# COPY src/deps/*.h /bun/src/deps/
# RUN make picohttp