@smi-digital/create-smi-app 2.3.2 → 2.4.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smi-digital/create-smi-app",
3
- "version": "2.3.2",
3
+ "version": "2.4.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -13,7 +13,7 @@ WORKDIR /opt/
13
13
  COPY package.json ./
14
14
  RUN npm install -g node-gyp
15
15
  RUN npm config set fetch-retry-maxtimeout 600000 -g && npm install --only=production
16
- ENV PATH /opt/node_modules/.bin:$PATH
16
+ ENV PATH=/opt/node_modules/.bin:$PATH
17
17
 
18
18
  WORKDIR /opt/app
19
19
  COPY . .
@@ -6,7 +6,7 @@
6
6
  # Stage 1: Build with Bun
7
7
  FROM oven/bun:1 as builder
8
8
  WORKDIR /app
9
- COPY package.json bun.lock ./
9
+ COPY package.json package-lock.json ./
10
10
  RUN bun install
11
11
  COPY . .
12
12
  RUN bun run build