
* Add marketplace * Update messages * Extract styles * Update test env * Update config and rename uri * Update template * Trigger CI * Possible fix * Update deploy yml * Add marketplace to staging * Fix responsiveness * Trigger CI * Fix navigation tests (#2081) * fix navigate through shop * wait for progress bar not to exist * simplify code * add wait * Fix navigate through shop (#2076) * fix navigate through shop * wait for progress bar not to exist * simplify code * Refine App about section (#2056) * Trigger CI * Trigger CI * Trigger CI * Trigger CI * Fix app activation/deactivation * Hide configuration url and policy if theres none * Remove about and support links * Remove unused code * Update stories and tests * Update messages * Fix privacy policy * Fix activation and "open app" * Update tests Co-authored-by: Karolina Rakoczy <rakoczy.karolina@gmail.com>
18 lines
549 B
Docker
18 lines
549 B
Docker
FROM node:14 as builder
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
ARG APP_MOUNT_URI
|
|
ARG API_URI
|
|
ARG MARKETPLACE_URL
|
|
ARG STATIC_URL
|
|
ENV API_URI ${API_URI:-http://localhost:8000/graphql/}
|
|
ENV APP_MOUNT_URI ${APP_MOUNT_URI:-/dashboard/}
|
|
ENV STATIC_URL ${STATIC_URL:-/dashboard/}
|
|
RUN STATIC_URL=${STATIC_URL} API_URI=${API_URI} MARKETPLACE_URL=${MARKETPLACE_URL} APP_MOUNT_URI=${APP_MOUNT_URI} npm run build
|
|
|
|
FROM nginx:stable
|
|
WORKDIR /app
|
|
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=builder /app/build/ /app/
|