fix dockerfile by adding required build programs
Some checks failed
Build the docker image for the frontend application / build (push) Failing after 10s

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn 2025-04-07 06:03:00 +03:00
parent 9a72d3f95d
commit a67bd74ced
Signed by: ngn
GPG Key ID: A3654DF5AD9F641D

View File

@ -31,7 +31,9 @@ ENV WEBSITE_DOC_URL=$WEBSITE_DOC_URL
WORKDIR /app WORKDIR /app
COPY . /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) # run it with bun (a lot faster)
FROM oven/bun:latest AS main FROM oven/bun:latest AS main