moved bee-dashboard image to nginx
All checks were successful
CI / Build bee-dashboard docker images (push) Successful in 9m50s

This commit is contained in:
2025-08-26 12:12:15 +08:00
parent 69abf17453
commit 93b67958b9
2 changed files with 10 additions and 6 deletions

View File

@@ -9,9 +9,6 @@ ADD git@github.com:ethersphere/bee-dashboard.git#v${VERSION} .
RUN PUPPETEER_SKIP_DOWNLOAD=1 npm ci
RUN npm run build
FROM base AS final
RUN npm i -g serve
WORKDIR /app
COPY --from=build /src/build .
EXPOSE 8080
ENTRYPOINT ["serve", "-l", "8080"]
FROM gitea.woggioni.net/woggioni/nginx:v1.29.0 AS final
COPY --from=build /src/build /srv/http
COPY bee-dashboard.conf /etc/nginx/conf.d/bee-dashboard.conf