Skip to content

Commit

Permalink
remove arm platform for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
montaguethomas committed Jun 14, 2024
1 parent 28e781a commit 58f4ed6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
with:
context: .
platforms: linux/amd64,linux/arm,linux/arm64
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM python:3-alpine
ARG TARGETPLATFORM
RUN apk upgrade --no-cache
RUN if [[ "linux/arm" == "${TARGETPLATFORM}" ]]; then apk add --no-cache libjpeg-turbo-dev zlib-dev; fi
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir --upgrade -r requirements.txt
Expand Down

0 comments on commit 58f4ed6

Please sign in to comment.