diff --git a/Dockerfile b/Dockerfile index 6943665e..eebf982a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM node:16 as builder +FROM oven/bun:latest as builder WORKDIR /build COPY web/package.json . -RUN npm install +RUN bun install COPY ./web . COPY ./VERSION . -RUN DISABLE_ESLINT_PLUGIN='true' VITE_REACT_APP_VERSION=$(cat VERSION) npm run build +RUN DISABLE_ESLINT_PLUGIN='true' VITE_REACT_APP_VERSION=$(cat VERSION) bun run build FROM golang AS builder2 diff --git a/web/bun.lockb b/web/bun.lockb new file mode 100755 index 00000000..c71070a6 Binary files /dev/null and b/web/bun.lockb differ