diff --git a/.github/workflows/BuildAndPushCotnainer.yml b/.github/workflows/BuildAndPushCotnainer.yml index 71c1818..cceac87 100644 --- a/.github/workflows/BuildAndPushCotnainer.yml +++ b/.github/workflows/BuildAndPushCotnainer.yml @@ -50,6 +50,6 @@ jobs: context: ./frontend file: ./frontend/Dockerfile push: true - platforms: linux/amd64,linux/arm64,linux/arm/v7 + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 9d3fab3..f9d573c 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -18,4 +18,4 @@ COPY --from=builder /app/static /usr/share/nginx/html # Default nginx port EXPOSE 80 -ENTRYPOINT ["nginx", "-g", "daemon off;"] +CMD ["nginx", "-g", "daemon off;"]