initial commit
This commit is contained in:
commit
c43cf85dec
1081 changed files with 282568 additions and 0 deletions
10
config/Dockerfile.build
Normal file
10
config/Dockerfile.build
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue