Skip to content

Updated Dockerfile-gnb to support USRP with srsGNB #20

Updated Dockerfile-gnb to support USRP with srsGNB

Updated Dockerfile-gnb to support USRP with srsGNB #20

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# Copyright 2024 Intel Corporation
name: Master workflow
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
hadolint-gnb:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Dockerfile linter
uses: hadolint/[email protected]
# For now, ignoring:
# DL3008 warning: Pin versions in apt get install (e.g., apt-get install <package>=<version>);
# DL4006 warning: Set the SHELL option -o pipefail before RUN with a pipe in it; and
# SC2034 warning: SPLIT appears unused
with:
dockerfile: Dockerfile-gnb
ignore: DL3008,DL4006,SC2034
hadolint-ue:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Dockerfile linter
uses: hadolint/[email protected]
# For now, ignoring:
# DL3008 warning: Pin versions in apt get install (e.g., apt-get install <package>=<version>)
with:
dockerfile: Dockerfile-ue
ignore: DL3008