diff --git a/.github/workflows/merge-dev.yml b/.github/workflows/merge-dev.yml index a39e5d83..6930fc2d 100644 --- a/.github/workflows/merge-dev.yml +++ b/.github/workflows/merge-dev.yml @@ -30,7 +30,7 @@ jobs: secrets: inherit needs: [get-pr-info ] with: - triggers: ('backend/' 'frontend/' '.github/') + triggers: ('backend/' 'frontend/') environment: test tag: ${{ needs.get-pr-info.outputs.pr }} params: diff --git a/backend/sites/Dockerfile.local b/backend/sites/Dockerfile.local index 96977a3e..db1b0100 100644 --- a/backend/sites/Dockerfile.local +++ b/backend/sites/Dockerfile.local @@ -27,7 +27,5 @@ RUN apk add postgresql-client # Expose port - mostly a convention, for readability EXPOSE 4005 -# Start up command - # Start up command ENTRYPOINT ["sh","/app/local_start.sh"] diff --git a/frontend/site-registry/Dockerfile b/frontend/site-registry/Dockerfile index 83ffa7a2..bc6b7c0f 100644 --- a/frontend/site-registry/Dockerfile +++ b/frontend/site-registry/Dockerfile @@ -20,7 +20,6 @@ RUN mkdir -p node_modules/.cache && chmod -R 777 node_modules/.cache # add app files COPY . ./ - RUN npm run build # Stage 1, based on Nginx, to have only the compiled app, ready for production with Nginx