diff --git a/app/Dockerfile b/app/Dockerfile index 953c49f..622c4ca 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -31,7 +31,9 @@ ENV WEBSITE_DOC_URL=$WEBSITE_DOC_URL WORKDIR /app COPY . /app -RUN npm install && npm run build +RUN apk add make sed wget +RUN npm install +RUN make # run it with bun (a lot faster) FROM oven/bun:latest AS main