Skip to content

Commit

Permalink
feat: add nodejs
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Nov 24, 2023
1 parent 72477b1 commit 3a0557a
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,3 +201,18 @@ updates:
- ci
- priority-low
- maintenance

- package-ecosystem: docker
directory: /node
ignore:
- dependency-name: "*"
update-types:
- version-update:semver-major
reviewers:
- AliMD
schedule:
interval: daily
labels:
- ci
- priority-low
- maintenance
3 changes: 3 additions & 0 deletions .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ jobs:
- name: postgres
path: postgres

- name: node
path: node

permissions:
contents: read
packages: write
Expand Down
1 change: 1 addition & 0 deletions node/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
19 changes: 19 additions & 0 deletions node/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM docker.io/library/node:18.18.2-alpine3.18

ARG BUILD_REV
ARG BUILD_DATE
LABEL org.opencontainers.image.title="alwatr/node" \
org.opencontainers.image.description="Cross-platform ECMAScript runtime environment, packaged by Alwatr." \
org.opencontainers.image.base.name="docker.io/library/node:18.18.2-alpine3.18" \
org.opencontainers.image.version="18.18.2" \
org.opencontainers.image.ref.name="18.18.2" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.created=${BUILD_DATE} \
org.opencontainers.image.revision=${BUILD_REV} \
org.opencontainers.image.vendor="Alwatr" \
org.opencontainers.image.source="https://github.com/Alwatr/containers/tree/next/node" \
org.opencontainers.image.url="https://github.com/Alwatr/containers/tree/next/node" \
org.opencontainers.image.documentation="https://github.com/Alwatr/containers/tree/next/node" \
org.opencontainers.image.authors="S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com), S. Amir Mohammad Najafi <[email protected]> (https://njfamirm.ir/)" \
cloud.alwatr.image.version.full="18.18.2" \
cloud.alwatr.image.version.short="18"
3 changes: 3 additions & 0 deletions node/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Alwatr Node.js Container

Cross-platform ECMAScript runtime environment, packaged by Alwatr.

0 comments on commit 3a0557a

Please sign in to comment.