diff --git a/.dockerignore b/.dockerignore index 71a25c14..ee44d1b1 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,3 @@ node_modules -.env .env.dev README.md diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d68cc2c6..aa9e545f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,7 +58,7 @@ jobs: with: context: . file: ./dockerfile - platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 + platforms: linux/amd64,linux/arm64,linux/armhf,linux/i386 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file diff --git a/dockerfile b/dockerfile index c925f2b7..07b7ee9f 100644 --- a/dockerfile +++ b/dockerfile @@ -1,11 +1,5 @@ FROM node:latest -LABEL org.opencontainers.image.title="Open Discord Translator" -LABEL org.opencontainers.image.description="A Discord bot that translates messages." -LABEL org.opencontainers.image.name="open-discord-translator" -LABEL org.opencontainers.image.authors="Kalitsune " -LABEL org.opencontainers.image.source="https://github.com/Kalitsune/open-discord-translator" - WORKDIR /app COPY . .