So I just migrated from Cloud Shell-Google Cloud to build a docker image.
What I did and was worked fine is with this simple command:
pack build my-app-image --builder gcr.io/buildpacks/builder:v1 --path .
While my Procfile is simply this:
web: uvicorn main:app --host=0.0.0.0 --port=${PORT:-8080} --app-dir ./src
Where --path .
is my current repository project that has been pulled with git pull.
How to construct worksflow.yaml
in github actions?