Skip to content

Commit

Permalink
chore(main): release node-distroless 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
junoebiz committed Nov 24, 2024
1 parent f08f1eb commit 9c1c343
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
8 changes: 8 additions & 0 deletions images/node-distroless/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 1.0.0 (2024-11-24)


### Features

* **node-distroless:** add node-distroless image combines google distroless and dump-init ([f08f1eb](https://github.com/ebizbase/dev-infras/commit/f08f1ebec201cc88bc34ebd5094f0792164c7bbc))
22 changes: 16 additions & 6 deletions images/node-distroless/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,25 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"metadata": {
"version": "0.0.0"
"version": "1.0.0"
},
"tags": [],
"targets": {
"build": {
"executor": "@ebizbase/nx-docker:build",
"options": {
"tags": ["node-distroless:edge"],
"outputs": ["type=docker"]
"tags": [
"node-distroless:edge"
],
"outputs": [
"type=docker"
]
}
},
"test": {
"dependsOn": ["build"],
"dependsOn": [
"build"
],
"executor": "nx:run-commands",
"options": {
"command": "docker run --rm node-distroless:edge -e 'console.log(process.version)'"
Expand All @@ -24,8 +30,12 @@
"publish": {
"executor": "@ebizbase/nx-docker:build",
"options": {
"tags": ["ghcr.io/ebizbase/node-distroless"],
"outputs": ["type=image"]
"tags": [
"ghcr.io/ebizbase/node-distroless"
],
"outputs": [
"type=image"
]
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion release-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"devcontainer-images/node-dind-devcontainer": "1.0.0",
"devcontainer-images/node-dind-playwright-devcontainer": "1.0.0",
"devcontainer-images/node-playwright-devcontainer": "1.0.0",
"images/node-distroless": "0.0.0"
"images/node-distroless": "1.0.0"
}

0 comments on commit 9c1c343

Please sign in to comment.