Skip to content

Commit

Permalink
Correct directory paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Aug 24, 2024
1 parent 00509c4 commit 9c9bb36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ FROM node:20 as keycloakify_jar_builder
RUN apt-get update && \
apt-get install -y openjdk-17-jdk && \
apt-get install -y maven;
COPY ./keycloakify-starter/package.json ./keycloakify-starter/pnpm-lock.yaml /opt/app/
COPY package.json pnpm-lock.yaml /opt/app/
WORKDIR /opt/app
RUN pnpm install
COPY ./keycloakify-starter/ /opt/app/
COPY . .
RUN pnpm run build

FROM quay.io/keycloak/keycloak:${KEYCLOAK_VERSION} as builder
Expand Down

0 comments on commit 9c9bb36

Please sign in to comment.