@abgov/nx-oc 12.12.0 → 12.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/generators/pipeline/actions/workflows/pipeline.yml__tmpl__ +1 -0
- package/src/generators/deployment/dotnet-files/Dockerfile.template +0 -10
- package/src/generators/deployment/frontend-files/Dockerfile.template +0 -8
- package/src/generators/deployment/node-files/Dockerfile.template +0 -8
package/package.json
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# This is a minimal Dockerfile for app deployment.
|
|
2
|
-
FROM registry.access.redhat.com/ubi8/dotnet-60-runtime
|
|
3
|
-
|
|
4
|
-
ARG ASSEMBLY
|
|
5
|
-
|
|
6
|
-
# Build output path mirrors the workspace layout (from the project's build target).
|
|
7
|
-
COPY ./<%= buildOutputPath %>/net6.0 .
|
|
8
|
-
|
|
9
|
-
ENV ASSEMBLY ${ASSEMBLY}
|
|
10
|
-
CMD dotnet ${ASSEMBLY}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
# This is a minimal Dockerfile for app deployment.
|
|
2
|
-
FROM registry.access.redhat.com/ubi8/nginx-118
|
|
3
|
-
|
|
4
|
-
# Build output path mirrors the workspace layout (from the project's build target).
|
|
5
|
-
COPY ./<%= buildOutputPath %>/nginx.conf "${NGINX_CONF_PATH}"
|
|
6
|
-
COPY ./<%= buildOutputPath %> .
|
|
7
|
-
|
|
8
|
-
CMD nginx -g "daemon off;"
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
# This is a minimal Dockerfile for app deployment.
|
|
2
|
-
FROM registry.access.redhat.com/ubi8/nodejs-18
|
|
3
|
-
|
|
4
|
-
# Build output path mirrors the workspace layout (from the project's build target).
|
|
5
|
-
COPY ./<%= buildOutputPath %> .
|
|
6
|
-
COPY ./node_modules ./node_modules
|
|
7
|
-
|
|
8
|
-
CMD node main.js
|