6c4aa0b100
* add Docker and docker-compose * dockerize - build and expose through nginx * update README.md for docker usage
34 lines
893 B
Docker
34 lines
893 B
Docker
ARG DEFAULT_KEYCLOAK_ENDPOINT='http:\/\/localhost:8180'
|
|
|
|
FROM node:12 as builder
|
|
|
|
ARG DEFAULT_KEYCLOAK_ENDPOINT
|
|
ARG KEYCLOAK_ENDPOINT
|
|
|
|
# install updated yarn
|
|
RUN rm -fr /usr/local/bin/yarn* &&\
|
|
npm install -g yarn
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
# replace Keycloak endpoints
|
|
RUN sed -i "s/${DEFAULT_KEYCLOAK_ENDPOINT}/${KEYCLOAK_ENDPOINT}/g" import.js &&\
|
|
sed -i "s/${DEFAULT_KEYCLOAK_ENDPOINT}/${KEYCLOAK_ENDPOINT}/g" src/context/auth/keycloak.ts &&\
|
|
sed -i "s/adminv2//g" snowpack.config.js &&\
|
|
yarn &&\
|
|
yarn build
|
|
|
|
FROM nginx:stable
|
|
ARG DEFAULT_KEYCLOAK_ENDPOINT
|
|
ARG KEYCLOAK_ENDPOINT
|
|
|
|
COPY --from=builder /app/build /usr/share/nginx/html
|
|
|
|
# setup reverse proxy for Keycloak endpoint
|
|
COPY nginx-default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# replace Keycloak endpoints
|
|
RUN sed -i "s/${DEFAULT_KEYCLOAK_ENDPOINT}/${KEYCLOAK_ENDPOINT}/g" /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|