initial commit

This commit is contained in:
Халтобин Евгений 2024-08-21 12:23:42 +03:00
commit 71ea421eac
1076 changed files with 279211 additions and 0 deletions

10
config/Dockerfile.build Normal file
View file

@ -0,0 +1,10 @@
FROM maven:3-jdk-11-slim
RUN apt update \
&& apt upgrade -y \
&& curl -fsSL https://deb.nodesource.com/setup_14.x | bash - \
&& apt install -y git nodejs \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY ../ .
RUN mvn clean -T4C && mvn package -T4C