@smi-digital/create-smi-app 2.3.2 → 2.4.1
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
|
@@ -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
|
|
16
|
+
ENV PATH=/opt/node_modules/.bin:$PATH
|
|
17
17
|
|
|
18
18
|
WORKDIR /opt/app
|
|
19
19
|
COPY . .
|
|
@@ -12,7 +12,7 @@ services:
|
|
|
12
12
|
networks:
|
|
13
13
|
- agency_shared_network
|
|
14
14
|
healthcheck:
|
|
15
|
-
test: ["CMD", "
|
|
15
|
+
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:1337/admin"]
|
|
16
16
|
interval: 10s
|
|
17
17
|
timeout: 5s
|
|
18
18
|
retries: 15
|