fix: frontend env

This commit is contained in:
Methapon2001 2025-02-17 11:19:12 +07:00
parent 0ed598cb6f
commit df62463151
3 changed files with 23 additions and 4 deletions

View file

@ -23,6 +23,11 @@ RUN pnpm run build
FROM base AS client
COPY ./client .
ENV VITE_API_ENDPOINT="$API_ENDPOINT"
ENV VITE_KC_REALM="VITE_KC_REALM"
ENV VITE_KC_URL="VITE_KC_URL"
ENV VITE_CLIENTID_KEYCLOAK="VITE_CLIENTID_KEYCLOAK"
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm run build
@ -32,4 +37,8 @@ COPY --from=build /app/dist /app/dist
COPY --from=server /app/static /app/static
COPY --from=client /app/dist /app/static
CMD ["node", "./dist/app.js"]
COPY ./entrypoint.sh ./entrypoint.sh
RUN chmod u+x ./entrypoint.sh
ENTRYPOINT ["./entrypoint.sh"]

View file

@ -1,9 +1,9 @@
import Keycloak from 'keycloak-js'
const keycloak = new Keycloak({
realm: import.meta.env.KC_REALMS,
url: import.meta.env.KC_URL,
clientId: 'edm',
realm: import.meta.env.VITE_KC_REALM,
url: import.meta.env.VITE_KC_URL,
clientId: import.meta.env.VITE_CLIENTID_KEYCLOAK,
})
let init = false

10
Services/entrypoint.sh Normal file
View file

@ -0,0 +1,10 @@
#!/bin/sh
for file in /app/static/assets/*.js
do
sed -i 's|VITE_KC_REALM|'${VITE_KC_REALM}'|g' $file
sed -i 's|VITE_KC_URL|'${VITE_KC_URL}'|g' $file
sed -i 's|VITE_CLIENTID_KEYCLOAK|'${VITE_CLIENTID_KEYCLOAK}'|g' $file
done
node ./dist/app.js