cc-core-cli 1.0.78 → 1.0.80

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": "cc-core-cli",
3
- "version": "1.0.78",
3
+ "version": "1.0.80",
4
4
  "description": "Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -5,9 +5,8 @@ WORKDIR /app
5
5
 
6
6
  COPY package.json .
7
7
  COPY .npmrc .
8
- RUN npm install --production
9
-
10
8
  COPY . .
9
+ RUN npm install --production
11
10
 
12
11
  RUN npm run build
13
12
  CMD ["npm", "run", "production"]
@@ -23,6 +23,7 @@ app
23
23
  type: 'application/json',
24
24
  limit: '100mb'
25
25
  }))
26
+ server.set('trust proxy', true)
26
27
  server.get('/health_check', (req, res) => {
27
28
  res.json({ message: 'ok' })
28
29
  })