Skip to content

Commit 43c6a5f

Browse files
authored
Merge pull request #1 from Shunpoco/feature/init
Container registoryにデプロイ
2 parents 83f1def + 5e67dc2 commit 43c6a5f

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM node:dubnium
2+
3+
RUN npm install -g firebase-tools
4+
5+
ENTRYPOINT ["/usr/local/bin/firebase"]

cloudbuild.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
steps:
2+
- name: "gcr.io/cloud-builders/docker"
3+
args:
4+
- build
5+
- -t
6+
- gcr.io/$PROJECT_ID/firebase
7+
- .
8+
images:
9+
- "gcr.io/$PROJECT_ID/firebase"

0 commit comments

Comments
 (0)