-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
168 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
utils/build/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/docker/library/node | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
EXPOSE 18080 | ||
CMD [ "node", "index.js" ] |
9 changes: 9 additions & 0 deletions
9
...uild/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node-alpine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/docker/library/node:alpine | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
EXPOSE 18080 | ||
CMD [ "node", "index.js" ] |
9 changes: 9 additions & 0 deletions
9
utils/build/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/docker/library/node:16-slim | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
EXPOSE 18080 | ||
CMD [ "node", "index.js" ] |
9 changes: 9 additions & 0 deletions
9
...ld/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node16-alpine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/docker/library/node:16-alpine | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
EXPOSE 18080 | ||
CMD [ "node", "index.js" ] |
2 changes: 1 addition & 1 deletion
2
utils/build/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...ld/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node18-alpine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/docker/library/node:18-alpine | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
EXPOSE 18080 | ||
CMD [ "node", "index.js" ] |
9 changes: 9 additions & 0 deletions
9
utils/build/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/docker/library/node:20-slim | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
EXPOSE 18080 | ||
CMD [ "node", "index.js" ] |
9 changes: 9 additions & 0 deletions
9
...ld/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node20-alpine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/docker/library/node:20-alpine | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
EXPOSE 18080 | ||
CMD [ "node", "index.js" ] |
9 changes: 9 additions & 0 deletions
9
utils/build/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/docker/library/node:22-slim | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
EXPOSE 18080 | ||
CMD [ "node", "index.js" ] |
9 changes: 9 additions & 0 deletions
9
...ld/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.node22-alpine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM public.ecr.aws/docker/library/node:22-alpine | ||
|
||
# Create app directory | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
EXPOSE 18080 | ||
CMD [ "node", "index.js" ] |
2 changes: 1 addition & 1 deletion
2
...ild/virtual_machine/weblogs/nodejs/test-app-nodejs-multicontainer/Dockerfile.reverseproxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FROM public.ecr.aws/nginx/nginx:stable-perl | ||
|
||
COPY nginx.conf /etc/nginx/nginx.conf | ||
COPY nginx.conf /etc/nginx/nginx.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters