Skip to content
Open

aa #237

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
push: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/${{ github.repository_owner }}/nodejs:latest
ghcr.io/${{ github.repository_owner }}/dea-dcdeploy2026:latest
labels: |
org.opencontainers.image.source=https://github.com/${{ github.repository }}
org.opencontainers.image.description=HTTP Server
Expand Down
Binary file added Source Code/nodejs-argo-main.zip
Binary file not shown.
15 changes: 15 additions & 0 deletions Source Code/nodejs-argo/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM node:alpine3.20

WORKDIR /tmp

COPY . .

EXPOSE 3000/tcp

RUN apk update && apk upgrade &&\
apk add --no-cache openssl curl gcompat iproute2 coreutils &&\
apk add --no-cache bash &&\
chmod +x index.js &&\
npm install

CMD ["node", "index.js"]
674 changes: 674 additions & 0 deletions Source Code/nodejs-argo/LICENSE

Large diffs are not rendered by default.

File renamed without changes.
Loading