Revert entrypoint change, build amd64 again

This commit is contained in:
Deko
2023-06-11 10:00:48 +02:00
committed by GitHub
parent c8d2c9fca0
commit 3ed8fe10c6
2 changed files with 2 additions and 2 deletions

View File

@@ -64,6 +64,6 @@ jobs:
with: with:
context: . context: .
push: true push: true
platforms: linux/arm64/v8 platforms: linux/arm64/v8,linux/amd64
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}

View File

@@ -15,4 +15,4 @@ RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH=/root/.local/bin:$PATH ENV PATH=/root/.local/bin:$PATH
RUN poetry install RUN poetry install
ENTRYPOINT ["poetry", "run", "python", "main.py"] ENTRYPOINT ["poetry", "run", "python", "-m", "app.main"]