- Removed Playwright test dependencies from package.json and deleted playwright.config.ts. - Updated LoginForm component and its tests for improved readability and consistency. - Cleaned up App.vue and PublicLayout.vue by adjusting import formatting. - Fixed missing newlines in CSS and other files for better formatting. - Updated userStore to ensure proper object syntax. - Refactored LoginView to enhance code clarity and maintainability.
14 lines
313 B
Docker
14 lines
313 B
Docker
FROM node:24-alpine AS build
|
|
WORKDIR /app
|
|
|
|
COPY src/FiscalOS.Web/package.json src/FiscalOS.Web/package-lock.json ./
|
|
RUN npm ci
|
|
|
|
COPY src/FiscalOS.Web/ .
|
|
RUN npm run build
|
|
|
|
FROM nginx:alpine AS final
|
|
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
EXPOSE 80
|