공부하는 스누피
[GCP] Firebase에 Flask 앱 배포하기 본문
디렉터리 구조
/rootProject
ㄴ/server
ㄴ/src
ㄴ/templates
ㄴindex.html
ㄴ app.py
ㄴDockerfile
ㄴ/static
ㄴstyle.css
ㄴ/venv
ㄴ.firebaserc
ㄴfirebase.json
ㄴfirestore.indexes.json
1단계: 샘플 app 작성하기
2단계: 앱을 컨테이너화하여 Container Registry에 업로드
gcloud builds submit --tag gcr.io/PROJECT_ID/rootProject
3단계: Cloud Run에 컨테이너 이미지 배포
gcloud run deploy --image gcr.io/PROJECT_ID/rootProject
4단계: Firebase로 호스팅 요청 전달
firebase.json 편집
"hosting": {
// ...
// Add the "rewrites" attribute within "hosting"
"rewrites": [ {
"source": "/helloworld",
"run": {
"serviceId": "helloworld", // "service name" (from when you deployed the container image)
"region": "us-central1" // optional (if omitted, default is us-central1)
}
} ]
}
배포 명령어 실행
firebase deploy
+ Docker로 로컬에서 테스트
PORT=8080 && docker run -p 9090:${PORT} -e PORT=${PORT} IMAGE_URL
IMAGE_URL을 이미지 경로로 바꿔야 한다.
(참고)
https://firebase.google.com/docs/hosting/cloud-run?hl=ko
https://medium.com/firebase-developers/hosting-flask-servers-on-firebase-from-scratch-c97cfb204579
'Cloud Computing' 카테고리의 다른 글
[AWS] EC2 서버 초기 세팅 커맨드 모음 (0) | 2022.11.05 |
---|---|
[AWS] SAA-C02 시험에 많이 나오는 유형 정리 (0) | 2021.10.07 |
[AWS] AWS Cloud Practitioner 강의 정리 (0) | 2021.07.02 |
[AWS] 알아두어야 할 CS 개념 (0) | 2021.06.25 |
Comments