diff options
| -rw-r--r-- | Dockerfile | 10 | ||||
| -rwxr-xr-x | bun.lockb | bin | 0 -> 82786 bytes |
2 files changed, 5 insertions, 5 deletions
@@ -1,16 +1,16 @@ -FROM node:18.16-alpine as build +FROM oven/bun:latest as build WORKDIR /due COPY package.json ./ -RUN yarn install +RUN bun install COPY ./ ./ -RUN yarn run build +RUN bun run build -FROM node:18.16-alpine +FROM oven/bun:latest WORKDIR /due @@ -18,4 +18,4 @@ COPY --from=build /due . EXPOSE 4173 -CMD ["yarn", "run", "preview", "--", "--host", "0.0.0.0"]
\ No newline at end of file +CMD ["bun", "run", "preview", "--", "--host", "0.0.0.0"]
\ No newline at end of file diff --git a/bun.lockb b/bun.lockb Binary files differnew file mode 100755 index 00000000..63def48d --- /dev/null +++ b/bun.lockb |