Skip to content

ci: update script for Debian package build to use latest commit #190

ci: update script for Debian package build to use latest commit

ci: update script for Debian package build to use latest commit #190

Workflow file for this run

name: Build Docker images
on: push
jobs:
# build_from_download:
# runs-on: ubuntu-22.04
# steps:
# # Checks-out the repository under $GITHUB_WORKSPACE.
# - uses: actions/checkout@v4
# - name: Build Dockerfile_download
# run: |
# cd docker
# docker build . -f Dockerfile_download
# build_single_stage:
# runs-on: ubuntu-22.04
# steps:
# # Checks-out the repository under $GITHUB_WORKSPACE.
# - uses: actions/checkout@v4
# - name: Build Dockerfile_build
# run: |
# cd docker
# docker build . -f Dockerfile_build
build_multiple_stages:
runs-on: ubuntu-22.04
steps:
# Checks-out the repository under $GITHUB_WORKSPACE.
- uses: actions/checkout@v4
- name: Build Dockerfile_multistage_build
run: |
cd docker
docker build . -f Dockerfile_multistage_build