Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ArdKuijpers committed Feb 19, 2024
1 parent 1a9d17b commit fdfb933
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/dockerpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,6 @@ jobs:
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand All @@ -109,7 +107,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64, linux/arm64, linux/arm/v7,linux/arm64/v8
platforms: linux/amd64, linux/arm64, linux/arm/v7
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ ENV POETRY_NO_INTERACTION=1 \
COPY pyproject.toml poetry.lock ./

RUN apt update && apt install -y build-essential
RUN \
if [ `dpkg --print-architecture` = "armhf" ]; then \
RUN if [ $(dpkg --print-architecture) = "armhf" ]; then \
printf "[global]\nextra-index-url=https://www.piwheels.org/simple\n" > /etc/pip.conf ; \
fi
RUN pip install poetry
Expand Down
11 changes: 0 additions & 11 deletions app.py

This file was deleted.

0 comments on commit fdfb933

Please sign in to comment.