mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
13 lines
357 B
YAML
13 lines
357 B
YAML
services:
|
|
clang-format:
|
|
image: clang-format
|
|
build:
|
|
context: ../../
|
|
dockerfile_inline: |
|
|
FROM ubuntu:24.04
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && apt-get install -y clang-format
|
|
volumes:
|
|
- ../../:/oai-src/
|
|
command: bash -c "cd /oai-src/ && ./ci-scripts/checkClangFormatErrors.sh"
|