Initial commit
Some checks failed
Gradle Build / build (push) Has been cancelled

This commit is contained in:
CaiXiang
2024-11-30 18:36:13 +08:00
commit aa56926258
2134 changed files with 232943 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# 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"]

View File

@@ -0,0 +1,6 @@
# SPDX-FileCopyrightText: The openTCS Authors
# SPDX-License-Identifier: MIT
variables:
# Remember to update this whenever you change the image contents in Dockerfile!
CODEQUALITY_IMAGE_TAG: "1.2.0"