Skip to content

🌱 add build-package flow #7

🌱 add build-package flow

🌱 add build-package flow #7

Workflow file for this run

name: Test build Docker Image CI
on:
push:
branches: ["release-1.26-vngcloud-v2"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build -f ./docker/Dockerfile ./docker --tag my-image-name:$(date +%s)
build-alpine:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image Alpine
run: docker build -f ./docker/alpine/Dockerfile ./docker/alpine --tag my-image-name-alpine:$(date +%s)