Add Docker build actions #504

Closed
dstepanov-yadro wants to merge 1 commit from dstepanov-yadro/frostfs-node:feat/docker-actions into master

View file

@ -36,3 +36,29 @@ jobs:
- name: Build LENS - name: Build LENS
run: make bin/frostfs-lens run: make bin/frostfs-lens
build-docker:
name: Build Docker images
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# Allows to fetch all history for all branches and tags.
# Need this for proper versioning.
fetch-depth: 0
- name: Build Docker ADM
run: make image-adm
- name: Build Docker CI
run: make image-ci
- name: Build Docker CLI
run: make image-cli
- name: Build Docker IR
run: make image-ir
- name: Build Docker Storage
run: make image-storage