Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
build(*): reduce container size
· 73d11642
Yannis Barlas
authored
Dec 05, 2024
73d11642
chore(release): 2.0.3 [skip ci]
· 340cb027
cokoapps release bot
authored
Dec 05, 2024
## [2.0.3](
v2.0.2...v2.0.3
) (2024-12-05)
340cb027
Hide whitespace changes
Inline
Side-by-side
.releaserc.js
View file @
340cb027
...
...
@@ -5,6 +5,10 @@ module.exports = {
'
@semantic-release/commit-analyzer
'
,
{
releaseRules
:
[
{
type
:
'
build
'
,
release
:
'
patch
'
,
},
{
type
:
'
revert
'
,
release
:
'
patch
'
,
...
...
CHANGELOG.md
View file @
340cb027
## [2.0.3](https://gitlab.coko.foundation/cokoapps/anystyle/compare/v2.0.2...v2.0.3) (2024-12-05)
## [2.0.2](https://gitlab.coko.foundation/cokoapps/anystyle/compare/v2.0.1...v2.0.2) (2024-12-04)
...
...
Dockerfile
View file @
340cb027
...
...
@@ -26,7 +26,7 @@ COPY --chown=node:node .yarnrc.yml .
COPY
--chown=node:node package.json ./package.json
COPY
--chown=node:node yarn.lock ./yarn.lock
RUN
yarn
install
--immutable
RUN
yarn
workspaces focus
--production
&&
yarn cache clean
&&
rm
-rf
~/.npm
COPY
--chown=node:node . .
...
...
Dockerfile-development
View file @
340cb027
...
...
@@ -28,6 +28,6 @@ COPY --chown=node:node .yarnrc.yml .
COPY --chown=node:node package.json ./package.json
COPY --chown=node:node yarn.lock ./yarn.lock
RUN yarn install --immutable
RUN yarn install --immutable
&& yarn cache clean && rm -rf ~/.npm
COPY --chown=node:node . .