From 78d205c320813eb2c891aab7622748b23d032b3a Mon Sep 17 00:00:00 2001 From: Valentin Heiserer Date: Tue, 26 Aug 2025 00:53:52 +0200 Subject: [PATCH] fix: update Dockerfile to change ENTRYPOINT to CMD for nginx --- .github/workflows/BuildAndPushCotnainer.yml | 2 +- frontend/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;"]