update yarn, node, openjdk, add missing phase args

Signed-off-by: MiniDigger <admin@minidigger.me>
This commit is contained in:
MiniDigger 2020-09-26 18:18:54 +02:00
parent a7517f5cfd
commit c5993ada30
3 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,4 @@
FROM openjdk:14-jdk-alpine
FROM openjdk:16-jdk-alpine
LABEL maintainer="Yannick Lamprecht <yannicklamprecht@live.de>"
@ -9,4 +9,4 @@ ENV TERM xterm-256color
EXPOSE 8080
# "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005" is for debug only
ENTRYPOINT ["java", "-XX:+ShowCodeDetailsInExceptionMessages", "-jar", "app.jar"]
ENTRYPOINT ["java", "-XX:+ShowCodeDetailsInExceptionMessages", "-jar", "app.jar"]

View File

@ -1,4 +1,4 @@
FROM openjdk:14-jdk-alpine
FROM openjdk:16-jdk-alpine
LABEL maintainer="Yannick Lamprecht <yannicklamprecht@live.de>"

View File

@ -251,8 +251,8 @@
<configuration>
<workingDirectory>src/main/frontend</workingDirectory>
<nodeVersion>v12.18.2</nodeVersion>
<yarnVersion>v1.22.0</yarnVersion>
<nodeVersion>v12.18.4</nodeVersion> <!-- latest LTS -->
<yarnVersion>v1.22.5</yarnVersion> <!-- latest stable -->
</configuration>
<executions>
@ -271,6 +271,7 @@
<configuration>
<arguments>install</arguments>
</configuration>
<phase>generate-resources</phase>
</execution>
<execution>
<id>yarn build</id>
@ -280,6 +281,7 @@
<configuration>
<arguments>run build</arguments>
</configuration>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>