전체 글 121

2과제 스크립트와 파일들

pre_builds.sh #!/bin/bash FILE_NAME=`ls Dockerfile` if [ $FILE_NAME = "Dockerfile" ] then # Dockerfile이 존재하는 경우 (ECR Docker commands) else # Dockerfile이 존재하지 않는 경우 pip3 install flask fi builds.sh #!/bin/bash FILE_NAME=`ls Dockerfile` if [ $FILE_NAME = "Dockerfile" ] then # Dockerfile이 존재하는 경우 (ECR Docker commands) else # Dockerfile이 존재하지 않는 경우 python3 ./app.py & fi post_builds.sh #!/bin/bash FIL..

Misc 2021.10.05