Master GitHub Actions with hands-on labs and exercises. Learn how to automate workflows, run tests, deploy applications, and more using GitHub's powerful automation platform. This repository has everything you need to get started with continuous integration and continuous deployment.
In this lab, you will learn how to publish an ASP.NET Core Web API as a Docker image using GitHub Actions. You will:
If you haven’t created the ASP.NET Web API Project, refer to the Create an ASP.NET Core Web API Project lab instructions before proceeding.
Duration: 30–40 minutes
Docker Hub Account:
GitHub Repository Secrets:
DOCKER_USERNAME
: Your Docker Hub username.DOCKER_PASSWORD
: Your Docker Hub PAT.Ensure the ASP.NET Web API Project exists in the ./src/dotnet/Weather.WebApi
directory.
.github/workflows
folder.aspnet-webapi-publish-docker-image.yml
.Copy the following workflow content into the file:
name: ASP.NET Web API Publish Docker Image
on:
workflow_dispatch:
push:
paths:
- '.github/workflows/aspnet-webapi-publish-docker-image.yml'
- 'src/dotnet/Weather.WebApi/**'
env:
DOCKER_IMAGE: prasadhonrao/aspnet-weather-webapi
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./src/dotnet/Weather.WebApi
permissions:
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Build ASP.NET Weather Web API
run: dotnet build
- name: Build Local Docker Image
run: docker image build -t aspnet-weather-webapi .
- name: List Docker Images
run: docker image ls
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: $
password: $
- name: Tag Image to latest
run: docker tag aspnet-weather-webapi $:latest
- name: Push Image with latest tag to Docker Hub Registry
run: docker push $:latest
- name: List Docker Images
run: docker image ls
prasadhonrao/aspnet-weather-webapi
with your own Docker Hub repository name in the env
section.Event Triggers:
push
event that modifies the workflow file or the project files.workflow_dispatch
event for testing or deployment on demand.Environment Variables:
env
variable named DOCKER_IMAGE
, which contains the name of the Docker image to be built and pushed.Steps in the Workflow:
Dockerfile
in the project directory.latest
for versioning.These steps together ensure that the Web API is built, containerized, and published for use.
main
branch with a descriptive commit message, e.g., “Add Docker image publishing workflow”.latest
and pushed to Docker Hub.On your local machine, pull the image from Docker Hub:
docker pull prasadhonrao/aspnet-weather-webapi:latest
Replace prasadhonrao/aspnet-weather-webapi
with your own Docker Hub repository name.
Run the Docker container:
docker run -d -p 8080:80 prasadhonrao/aspnet-weather-webapi:latest
Access the running application in your browser at http://localhost:8080
and test the Web API endpoints.
In this lab, you:
You can now deploy your ASP.NET Web API as a containerized application anywhere Docker is supported.