diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 7e5c2ccc..7452c65d 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -29,7 +29,7 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v1 with: - platforms: linux/amd64, linux/arm64, linux/386, linux/ppc64le, linux/s390x + platforms: all # Login into GH container registry - name: Log in to registry @@ -37,7 +37,7 @@ jobs: # Build the image from default Dockerfile - name: Build image - run: DOCKER_BUILDKIT=0 docker build . --file docker/Dockerfile-multi-arch --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}" + run: docker build . --file docker/Dockerfile-multi-arch --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}" # Push build image - name: Push image diff --git a/package.json b/package.json index ec092faa..31be3c06 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "server", "author": "Alicia Sykes (https://aliciasykes.com)", "scripts": { - "start": "npm-run-all --parallel build-watch start", + "start": "node server", "dev": "vue-cli-service serve", "build": "vue-cli-service build", "lint": "vue-cli-service lint", @@ -14,8 +14,7 @@ "build-and-start": "npm-run-all --parallel build-watch start", "validate-config": "node services/config-validator", "health-check": "node services/healthcheck", - "dependency-audit": "npx improved-yarn-audit --ignore-dev-deps", - "static-start": "node server" + "dependency-audit": "npx improved-yarn-audit --ignore-dev-deps" }, "dependencies": { "@babel/core": "^7.0.0",