We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dce67b commit c6715b0Copy full SHA for c6715b0
Dockerfile
@@ -1,6 +1,17 @@
1
FROM gradle:8.11-jdk21-corretto AS build
2
WORKDIR /app
3
4
+RUN dnf install -y nodejs20 \
5
+ && alternatives --install /usr/bin/node node /usr/bin/node-20 90 \
6
+ && alternatives --install /usr/bin/npm npm /usr/bin/npm-20 90 \
7
+ && alternatives --install /usr/bin/npx npx /usr/bin/npx-20 90
8
+
9
+COPY organisaatio-ui ./organisaatio-ui
10
+WORKDIR /app/organisaatio-ui
11
+RUN npm ci
12
+RUN npm run build
13
14
+WORKDIR /app
15
COPY github-packages-gradle.properties /opt/gradle/gradle.properties
16
COPY ytj-client ./ytj-client
17
COPY organisaatio-api ./organisaatio-api
0 commit comments