@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/nx-oc",
3
- "version": "12.12.0",
3
+ "version": "12.12.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "src/index.js",
6
6
  "description": "Government of Alberta - Nx plugin for OpenShift.",
@@ -143,6 +143,7 @@ jobs:
143
143
  for app in $AFFECTED_APPS
144
144
  do
145
145
  buildah build \
146
+ --build-arg PROJECT=$app \
146
147
  --file .openshift/$app/Dockerfile \
147
148
  --tag <%= registry %>/$app:latest \
148
149
  --tag <%= registry %>/$app:${{ github.sha }} \
@@ -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