use some ebug builds since its not working out of the box

This commit is contained in:
Ulf Gebhardt 2021-06-07 14:58:28 +02:00
parent b6b93f58d7
commit 92bda02f0e
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ FROM base as production
# TODO - do all copying with one COPY command to have one layer # TODO - do all copying with one COPY command to have one layer
# Copy "binary"-files from build image # Copy "binary"-files from build image
COPY --from=build ${DOCKER_WORKDIR}/.nuxt ./.nuxt COPY --from=build ${DOCKER_WORKDIR}/.nuxt ./.nuxt
#COPY --from=build ${DOCKER_WORKDIR}/node_modules ./node_modules COPY --from=build ${DOCKER_WORKDIR}/node_modules ./node_modules
COPY --from=build ${DOCKER_WORKDIR}/nuxt.config.js ./nuxt.config.js COPY --from=build ${DOCKER_WORKDIR}/nuxt.config.js ./nuxt.config.js
# Copy static files # Copy static files
# TODO - this seems not be needed anymore for the new rebranding # TODO - this seems not be needed anymore for the new rebranding

View File

@ -54,7 +54,7 @@ FROM base as code
COPY package.json yarn.lock ./ COPY package.json yarn.lock ./
# yarn install # yarn install
RUN yarn install --production=true --frozen-lockfile --non-interactive RUN yarn install --production=false --frozen-lockfile --non-interactive
COPY assets assets COPY assets assets
COPY components/LocaleSwitch/ components/LocaleSwitch COPY components/LocaleSwitch/ components/LocaleSwitch