This repository has been archived on 2025-06-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
server/Dockerfile-frontend-ui
Renovate Bot a15532f8b8
Some checks are pending
continuous-integration/drone/push Build is pending
chore(deps): update node docker tag to v23
2024-12-05 17:47:27 +00:00

13 lines
203 B
Text

FROM node:23-alpine as nodebuild
WORKDIR /ui
COPY frontend/fic/ .
RUN npm install --network-timeout=100000 && \
npm run build
FROM scratch
COPY --from=nodebuild /ui/build/ /www/htdocs-frontend