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 efb374a573
Some checks are pending
continuous-integration/drone/push Build is running
chore(deps): update node docker tag to v22
2024-06-19 11:36:21 +00:00

13 lines
203 B
Text

FROM node:22-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