Task: Add docker container inside alpine linux for docker image and github workflows

This commit is contained in:
2021-07-14 14:43:18 +07:00
commit 4a987fb30e
7 changed files with 161 additions and 0 deletions

27
.github/workflows/docker-publish.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Docker CI
on:
push:
branches: [ main ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_SECRET }}
-
name: Checkout
uses: actions/checkout@v2
-
name: Build and Push from Makefile
run: |
make build