Skip to content

Commit

Permalink
update Vaadin UI version up to 23 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kochetkov-ma committed Jul 9, 2022
1 parent cfaf035 commit 3927a8e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules/
.helm/
.github/
build/
.idea/
.gradle/
tmp/
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
tags:
- 'v*.*.*'

env:
NODE_VERSION: 16.15.0

jobs:
build:
runs-on: ubuntu-latest
Expand Down
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
FROM gradle:6.9.2-jdk11-alpine as build
FROM gradle:6.9.2-jdk11 as build
COPY . .
ARG RELEASE_VERSION=${RELEASE_VERSION:-0.0.0}
ARG NODE_VERSION=${NODE_VERSION:-16.15.0}
RUN gradle -Pversion=docker --no-daemon -PnodeVersion=v$NODE_VERSION vaadinBuildFrontend bootJar
RUN gradle -Pversion=docker -i -s --no-daemon bootJar

FROM openjdk:11.0.15-jre11.0.15-jre-slim-bullseye as production
FROM openjdk:11.0.15-jre-slim-bullseye as production
COPY --from=build /home/gradle/build/libs/allure-server-docker.jar /allure-server-docker.jar
# Set port
EXPOSE ${PORT:-8080}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ wrapper {
}
vaadin {
nodeVersion = 'v16.15.0'
pnpmEnable = true
pnpmEnable = false
productionMode = true
}
classes {
Expand Down

0 comments on commit 3927a8e

Please sign in to comment.