diff options
author | 2023-03-03 19:03:47 -0800 | |
---|---|---|
committer | 2023-03-03 19:03:47 -0800 | |
commit | d8d23f259482c9c106f7f218b40d3545dae76b6a (patch) | |
tree | 6d3840c0fe8fc5e4f361c6ae02e80a4c1f3ef0dd | |
parent | 122e6a8860d7f872da88aff42455619175881853 (diff) | |
download | bun-d8d23f259482c9c106f7f218b40d3545dae76b6a.tar.gz bun-d8d23f259482c9c106f7f218b40d3545dae76b6a.tar.zst bun-d8d23f259482c9c106f7f218b40d3545dae76b6a.zip |
Update Dockerfile
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index 7b14725ad..ec11e9aea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -402,6 +402,7 @@ ARG CPU_TARGET ENV CPU_TARGET=${CPU_TARGET} COPY Makefile ${BUN_DIR}/Makefile +COPY .prettierrc.cjs ${BUN_DIR}/.prettierrc.cjs WORKDIR $BUN_DIR @@ -460,6 +461,7 @@ ARG CPU_TARGET ENV CPU_TARGET=${CPU_TARGET} COPY Makefile ${BUN_DIR}/Makefile +COPY .prettierrc.cjs ${BUN_DIR}/.prettierrc.cjs WORKDIR $BUN_DIR @@ -492,6 +494,7 @@ ENV CCACHE_DIR=/ccache COPY Makefile ${BUN_DIR}/Makefile COPY src/bun.js/bindings/sqlite ${BUN_DIR}/src/bun.js/bindings/sqlite +COPY .prettierrc.cjs ${BUN_DIR}/.prettierrc.cjs WORKDIR $BUN_DIR @@ -519,6 +522,7 @@ ARG CPU_TARGET ENV CPU_TARGET=${CPU_TARGET} COPY Makefile ${BUN_DIR}/Makefile +COPY .prettierrc.cjs ${BUN_DIR}/.prettierrc.cjs WORKDIR $BUN_DIR |