Skip to content
Snippets Groups Projects
Commit 2fc8c1c9 authored by michael.minelli's avatar michael.minelli
Browse files

Dockerfile => Bug fix: Fix workdir

parent b490fbea
No related branches found
No related tags found
No related merge requests found
...@@ -30,11 +30,13 @@ LABEL Description="Express API for Dojo - Run stage" ...@@ -30,11 +30,13 @@ LABEL Description="Express API for Dojo - Run stage"
ARG BUILD_DEPLOY_WORKDIR ARG BUILD_DEPLOY_WORKDIR
COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/node_modules ${BUILD_DEPLOY_WORKDIR}/node_modules WORKDIR ${BUILD_DEPLOY_WORKDIR}
COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/package*.json ${BUILD_DEPLOY_WORKDIR}/
COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/dist ${BUILD_DEPLOY_WORKDIR}/dist COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/node_modules ./node_modules
COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/prisma ${BUILD_DEPLOY_WORKDIR}/prisma COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/package*.json ./
COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/.env ${BUILD_DEPLOY_WORKDIR}/.env COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/dist ./dist
COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/prisma ./prisma
COPY --from=builder ${BUILD_DEPLOY_WORKDIR}/.env ./.env
EXPOSE 30992 EXPOSE 30992
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment