Skip to content

🔨 fix docker build #4

🔨 fix docker build

🔨 fix docker build #4

Workflow file for this run

name: Test build Docker Image CI
on:
push:
branches: [ "release-1.26" ]
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)