Skip to content

Docker image build workflow #1

Docker image build workflow

Docker image build workflow #1

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag s3backup
- name: Build the Docker image (arm32v7)
run: docker build . --file Dockerfile.arm32v7 --tag s3backup:arm32v7