- Tailwind brand-Palette neu verankert: #051e23 = brand-900 (Keyfarbe), brand-50..950 als dunkles Teal-Spektrum (warm) - btn-primary: bg-brand-900 hover:bg-brand-800 (statt indigo) - input/badge: focus/text auf brand-700/900 - public/pfandlogo.jpg eingebaut als: - Favicon + Apple-Touch-Icon - Login (zentral, statt P-Box) - TopNav-Header (statt P-Box) - SuperAdmin-Header (statt P-Box) - index.html theme-color #051e23 - manifest.json theme_color #051e23 + Logo als zusaetzliches Icon
13 lines
284 B
Docker
13 lines
284 B
Docker
FROM node:20-alpine AS build
|
|
WORKDIR /app
|
|
COPY package.json ./
|
|
RUN npm install --no-audit --no-fund
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
FROM nginx:1.25-alpine
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
EXPOSE 80
|
|
CMD ["nginx", "-g", "daemon off;"]
|