diff --git a/apps/OpenSign/Dockerhubfile b/apps/OpenSign/Dockerhubfile index 891790a9f..e294ff234 100644 --- a/apps/OpenSign/Dockerhubfile +++ b/apps/OpenSign/Dockerhubfile @@ -15,6 +15,8 @@ COPY apps/OpenSign/ . COPY microfrontends/ . COPY apps/OpenSign/.husky . +RUN npm docker-build + # Make port 3000 available to the world outside this container EXPOSE 3000 diff --git a/apps/OpenSign/package.json b/apps/OpenSign/package.json index a09dbe532..fb11d577b 100644 --- a/apps/OpenSign/package.json +++ b/apps/OpenSign/package.json @@ -42,7 +42,7 @@ "build": "npm run version && rm -rf public/mfbuild && npm run micro && CI=false && mf-cra build", "micro": "cd ../../microfrontends/SignDocuments && npm install && npm run build", "docker-build": "npm run version && rm -rf public/mfbuild && npm run docker-micro && CI=false && mf-cra build", - "docker-micro": "cd ./microfrontends/SignDocuments && npm install && npm run build", + "docker-micro": "cd ./SignDocuments && npm install && npm run build", "test": "react-scripts test", "eject": "react-scripts eject", "release": "standard-version",