Skip to content

Commit 92b2a50

Browse files
committed
txn-processor-controller
0 parents  commit 92b2a50

File tree

8 files changed

+2533
-0
lines changed

8 files changed

+2533
-0
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
fyre-400407-9c9f737ef3f7.json
3+
config.yaml
4+
config.json
5+
secrets.yaml
6+
.env
7+
deployment.yaml

Dockerfile

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
FROM node:18
2+
SHELL ["/bin/bash", "-c"]
3+
4+
5+
RUN apt-get update
6+
7+
RUN curl https://sdk.cloud.google.com | bash
8+
9+
10+
ENV PATH="/root/google-cloud-sdk/bin:${PATH}"
11+
RUN gcloud components install gke-gcloud-auth-plugin
12+
13+
14+
WORKDIR /app
15+
16+
17+
18+
COPY package.json .
19+
20+
RUN npm i
21+
22+
23+
COPY . .
24+
25+
26+
CMD ["/bin/bash","script.sh"]

Readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
3+
4+

0 commit comments

Comments
 (0)