Commit 90ddb15c authored by Protocole's avatar Protocole
Browse files

Merge branch '583-update-node-images-to-node-18' into 'latest'

Resolve "Update node images to Node 18"

Closes #583

See merge request r2devops/hub!359
parents 71383125 5f14a87c
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
# Changelog
All notable changes to this job will be documented in this file.

## [0.1.1] - 2022-05-20
* Update docker image to node:18-buster

## [0.1.0] - 2022-01-03
* Initial version
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ In order to build Docusaurus, the user must `init` a Docusaurus project, checkou

* Job name: `docusaurus_build`
* Docker image:
[`node:16.13.1-buster`](https://hub.docker.com/r/_/node)
[`node:18-buster`](https://hub.docker.com/r/_/node)
* Default stage: `build`
* When: `always`

+2 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ stages:
docusaurus_build:

  image:
    name: node:16.13.1-buster
    name: node:18-buster
    entrypoint: [""]

  stage: build
@@ -18,7 +18,7 @@ docusaurus_build:
  script:
    - cd ${PROJECT_ROOT}
    - npm install
    - npm install docusaurus
    - npm install -s @docusaurus/core @docusaurus/preset-classic
    - npx docusaurus build --out-dir ${CI_PROJECT_DIR}/${DOCUSAURUS_OUTPUT_PATH}

  artifacts:
+2 −0
Original line number Diff line number Diff line
# Changelog
All notable changes to this job will be documented in this file.

## [0.2.1] - 2022-05-20
* Upgrade image from `15.14` to `node:18-buster`
## [0.2.0] - 2021-04-23
* Upgrade image `node` from `15.7` to `15.14`

+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ gulp:

* Job name: `gulp`
* Default stage: `others`
* Docker image: [`node:15.7-buster`](https://hub.docker.com/_/node){:target="_blank"}
* Docker image: [`node:18-buster`](https://hub.docker.com/_/node){:target="_blank"}
* When: `always`


Loading