diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 8e7c634..5bbbb1e 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -64,6 +64,6 @@ jobs: with: context: . push: true - platforms: linux/arm64/v8 + platforms: linux/arm64/v8,linux/amd64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/Dockerfile b/Dockerfile index 12cdbcc..d62f2fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,4 +15,4 @@ RUN curl -sSL https://install.python-poetry.org | python3 - ENV PATH=/root/.local/bin:$PATH RUN poetry install -ENTRYPOINT ["poetry", "run", "python", "main.py"] +ENTRYPOINT ["poetry", "run", "python", "-m", "app.main"]