Skip to content
4 changes: 2 additions & 2 deletions app1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BUILD_VAR="buildVar"
FROM node:20.18.0-alpine3.20
LABEL authors="vitalii-codefresh"
FROM node:20.18.0-alpine3.21
LABEL authors="vitalii-codefresh-fnm"
WORKDIR app/
COPY . .
EXPOSE 8002
Expand Down
12 changes: 12 additions & 0 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
steps:
- name: 'gcr.io/cloud-builders/docker'
args:
- 'buildx'
- 'build'
- '-t'
- 'europe-north1-docker.pkg.dev/prisma-extractor/gc-registry-vitalii/gc-registry-vitalii:$COMMIT_SHA'
- '-f'
- 'app1/Dockerfile'
- '--push'
- '.'
logsBucket: 'gs://prisma-extractor_cloudbuild'
2 changes: 1 addition & 1 deletion gitops/k3dCluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Simple
metadata:
name: mycluster-vitalii # name that you want to give to your cluster (will still be prefixed with `k3d-`)
servers: 1 # same as `--servers 1`
agents: 0 # same as `--agents 2`
agents: 1 # same as `--agents 2`
image: rancher/k3s:v1.30.0-k3s1
#ports:
# - port: 8080:80 # same as `--port '8080:80@loadbalancer'`
Expand Down
Loading