From the course: GitHub Actions for CI/CD

Unlock the full course today

Join today to access over 23,200 courses taught by industry experts.

Continuous deployment for container images

Continuous deployment for container images - GitHub Tutorial

From the course: GitHub Actions for CI/CD

Continuous deployment for container images

- [Instructor] Earlier in the course, we developed a CICD workflow for a container image. In that case, the CD was for continuous delivery. Now let's develop a workflow for container image deployment. In our previous container image workflow, we integrated Python code and then built a container image that we stored in GitHub packages. In this way, we achieved continuous integration and continuous delivery. In this lesson, we'll use a workflow that continuously deploys a container image to AWS App Runner. AWS App Runner is a fully managed service for building and running containers. We can give App Runner our code, and it will build the image for us. Or we can configure App Runner to use an image that we've built using another service like GitHub Actions. We'll use a workflow that calls three other workflows. The first call will be to a workflow that integrates the Python code for the application. The next workflow in…

Contents