19 lines
435 B
Docker
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"]
|