diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 530e2ea..e6262b7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,9 +13,9 @@ jobs: matrix: include: - image: ghcr.io/bluedynamics/mximages-plone/mx-plone-frontend - dockerfile: frontend/Dockerfile + dockerfile: ./frontend/Dockerfile - image: ghcr.io/bluedynamics/mximages-plone/mx-plone-backend - dockerfile: backend/Dockerfile + dockerfile: ./backend/Dockerfile steps: - name: Checkout uses: actions/checkout@v4 diff --git a/frontend/Dockerfile b/frontend/Dockerfile index f1e95de..cc958ac 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -20,7 +20,7 @@ RUN \ USER plone # Add local code -COPY --chown=plone:plone . /app +COPY --chown=plone:plone ./frontend /app WORKDIR /app # Install and build application