@asaleh37/ui-base 25.12.122 → 25.12.123

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/__ODockerfile CHANGED
@@ -1,14 +1,14 @@
1
- # STEP 1 — Build static files
2
- FROM node:18 AS build
3
- WORKDIR /app
4
-
5
- COPY package.json ./
6
- RUN npm install --force
7
-
8
- COPY . .
9
- RUN npm run build
10
-
11
- # STEP 2 — Nginx to serve static build
12
- FROM nginx:1.25
13
- COPY --from=build /app/dist /usr/share/nginx/html
14
- EXPOSE 80
1
+ # STEP 1 — Build static files
2
+ FROM node:18 AS build
3
+ WORKDIR /app
4
+
5
+ COPY package.json ./
6
+ RUN npm install --force
7
+
8
+ COPY . .
9
+ RUN npm run build
10
+
11
+ # STEP 2 — Nginx to serve static build
12
+ FROM nginx:1.25
13
+ COPY --from=build /app/dist /usr/share/nginx/html
14
+ EXPOSE 80