Bump alpine from 3.20.1 to 3.20.2 #1050
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the dev Docker image | |
run: docker build . --file test/migrator-dev/Dockerfile --tag migrator-dev:$(date +%s) | |
- name: Build the production Docker image | |
run: docker build . --build-arg GIT_REF=${{ github.ref }} --build-arg GIT_SHA=${{ github.sha }} --tag migrator-prod:$(date +%s) |