Skip to content

Fixing up Dockerfile, adding github action to build image #16

Fixing up Dockerfile, adding github action to build image

Fixing up Dockerfile, adding github action to build image #16

Workflow file for this run

name: Build Docker image
# Shamelessly cribbed from https://docs.docker.com/build/ci/github-actions/test-before-push/
# with minor modifications
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
TEST_TAG: user/app:test
LATEST_TAG: user/app:latest
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Fixup checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Try something
run: pwd && ls -la && git describe --tags
- name: Build and export to Docker
uses: docker/build-push-action@v6
with:
load: true
tags: ${{ env.TEST_TAG }}
build-args: BUILDKIT_CONTEXT_KEEP_GIT_DIR=1
# TODO actually have this do something with test data
- name: Test
run: |
docker run --rm ${{ env.TEST_TAG }} -c "fit_dataset --help"