mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-11 01:40:32 +00:00
Use new base image v20250310 (#8181)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
parent
2d3dac75b3
commit
8f2d8abc62
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/front-base:v20250113a
|
FROM hardcoreeng/front-base:v20250310
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/model.json ./
|
COPY bundle/model.json ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
* path segment in the "$schema" field for all your Rush config files. This will ensure
|
* path segment in the "$schema" field for all your Rush config files. This will ensure
|
||||||
* correct error-underlining and tab-completion for editors such as VS Code.
|
* correct error-underlining and tab-completion for editors such as VS Code.
|
||||||
*/
|
*/
|
||||||
"rushVersion": "5.149.0",
|
"rushVersion": "5.150.0",
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The next field selects which package manager should be installed and determines its version.
|
* The next field selects which package manager should be installed and determines its version.
|
||||||
@ -62,7 +62,7 @@
|
|||||||
* The default value is false to avoid legacy compatibility issues.
|
* The default value is false to avoid legacy compatibility issues.
|
||||||
* It is strongly recommended to set strictPeerDependencies=true.
|
* It is strongly recommended to set strictPeerDependencies=true.
|
||||||
*/
|
*/
|
||||||
"strictPeerDependencies": false,
|
"strictPeerDependencies": false
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configures the strategy used to select versions during installation.
|
* Configures the strategy used to select versions during installation.
|
||||||
@ -247,14 +247,12 @@
|
|||||||
// "[^@]+@users\\.noreply\\.github\\.com",
|
// "[^@]+@users\\.noreply\\.github\\.com",
|
||||||
// "travis@example\\.org"
|
// "travis@example\\.org"
|
||||||
// ],
|
// ],
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* When Rush reports that the address is malformed, the notice can include an example
|
* When Rush reports that the address is malformed, the notice can include an example
|
||||||
* of a recommended email. Make sure it conforms to one of the allowedEmailRegExps
|
* of a recommended email. Make sure it conforms to one of the allowedEmailRegExps
|
||||||
* expressions.
|
* expressions.
|
||||||
*/
|
*/
|
||||||
// "sampleEmail": "mrexample@users.noreply.github.com",
|
// "sampleEmail": "mrexample@users.noreply.github.com",
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The commit message to use when committing changes during 'rush publish'.
|
* The commit message to use when committing changes during 'rush publish'.
|
||||||
*
|
*
|
||||||
@ -263,7 +261,6 @@
|
|||||||
* in the commit message, and then customize Rush's message to contain that string.
|
* in the commit message, and then customize Rush's message to contain that string.
|
||||||
*/
|
*/
|
||||||
// "versionBumpCommitMessage": "Applying package updates. [skip-ci]",
|
// "versionBumpCommitMessage": "Applying package updates. [skip-ci]",
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The commit message to use when committing changes during 'rush version'.
|
* The commit message to use when committing changes during 'rush version'.
|
||||||
*
|
*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
RUN npm install -g pnpm
|
RUN npm install -g pnpm
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/print-base:v20250113a
|
FROM hardcoreeng/print-base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/rekoni-base:v20250113a
|
FROM hardcoreeng/rekoni-base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
FROM hardcoreeng/base:v20250113a
|
FROM hardcoreeng/base:v20250310
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
COPY bundle/bundle.js ./
|
COPY bundle/bundle.js ./
|
||||||
|
Loading…
Reference in New Issue
Block a user