opentcs/.gitlab/docker/codequality/Dockerfile
CaiXiang aa56926258
Some checks failed
Gradle Build / build (push) Has been cancelled
Initial commit
2024-11-30 18:36:13 +08:00

19 lines
435 B
Docker

# SPDX-FileCopyrightText: The openTCS Authors
# SPDX-License-Identifier: MIT
#
# Remember to update version.yml when you change the image contents here!
#
FROM eclipse-temurin:21-jdk-jammy
RUN DEBIAN_FRONTEND=noninteractive apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
bash \
nodejs \
npm \
sed \
&& rm -rf /var/lib/apt/lists/*
RUN npm install -g violations-command-line@1.25.3
CMD ["/bin/bash"]