Skip to content

Commit

Permalink
fix: repair partial build with "active-themes" after npm upgrade (#1476)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhhyi committed Aug 11, 2023
1 parent 2c79d97 commit 30cc36c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -20,7 +20,7 @@ COPY templates/webpack/* /workspace/templates/webpack/
ARG testing=false
ENV TESTING=${testing}
ARG activeThemes=
RUN if [ ! -z "${activeThemes}" ]; then npm config set active-themes="${activeThemes}"; fi
RUN if [ ! -z "${activeThemes}" ]; then npm pkg set config.active-themes="${activeThemes}"; fi
RUN npm run build:multi client -- --deploy-url=DEPLOY_URL_PLACEHOLDER
COPY tsconfig.server.json server.ts /workspace/
RUN npm run build:multi server
Expand Down

0 comments on commit 30cc36c

Please sign in to comment.