https://github.com/kth/kth-nodejs-18
NodeJS 18
https://github.com/kth/kth-nodejs-18
Last synced: 4 months ago
JSON representation
NodeJS 18
- Host: GitHub
- URL: https://github.com/kth/kth-nodejs-18
- Owner: KTH
- License: mit
- Created: 2022-04-28T13:49:55.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-24T15:02:31.000Z (over 1 year ago)
- Last Synced: 2025-03-22T06:01:56.007Z (about 1 year ago)
- Language: Shell
- Size: 34.2 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NodeJS 18 
## What versions are installed?
*Npm* and *Yarn* versions are always the latest availible at build time.
Each built image has information about its version in a file called `KTH_NODEJS`. To look into this files content run:
```bash
az login
az acr login -n kthregistry
docker run kthregistry.azurecr.io/kth-nodejs-18 cat /KTH_NODEJS
```
```bash
IMAGE INFORMATION
Based on: node:16-alpine
Build date: Thu Apr 28 13:55:46 UTC 2022
Node: v18.0.0
NPM: 8.6.0
Yarn: 1.22.18
--- Default global packages ---
/usr/local/lib
+-- corepack@0.10.0
+-- merge-descriptors@1.0.1
`-- npm@8.6.0
```
## Tags
By default there will always be 2 tags to every build.
The first tag contains date of the build, buildversion and 4 first chars from that builds commit sha.
the second is "latest" there will always only one latest version, replacing the previous version.
This will provide a linear insight in the build history.
## What operating system does this image use?
The image also contains build information from when the operating system was built. This information is located in the root in a file called `KTH_OS` run: `docker run kthregistry.azurecr.io/kth-nodejs-18 cat /KTH_NODEJS`. to view your image, and make sure you are logged in to the ACR as mentioned above.
```bash
IMAGE INFORMATION
Alpine version: 3.15.4
Build date: Thu Apr 28 13:55:45 UTC 2022
```
## Automated builds
There is a schedule for nightly build. New builds are scheduled for 5 times a week. Builds are also automated to trigger when the code in main branch is updated,