Skip to content

Commit

Permalink
Update builder 2022.06.1 (#175)
Browse files Browse the repository at this point in the history
* Update builder 2022.06.0

* Support for native arch
  • Loading branch information
pvizeli authored Jun 13, 2022
1 parent 409ee65 commit 100e96c
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
fi
- name: Build base image
uses: home-assistant/builder@2022.03.1
uses: home-assistant/builder@2022.06.1
with:
args: |
$BUILD_ARGS \
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
fi
- name: Build base image
uses: home-assistant/builder@2022.03.1
uses: home-assistant/builder@2022.06.1
with:
args: |
$BUILD_ARGS \
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
fi
- name: Build base image
uses: home-assistant/builder@2022.03.1
uses: home-assistant/builder@2022.06.1
with:
args: |
$BUILD_ARGS \
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
fi
- name: Build base image
uses: home-assistant/builder@2022.03.1
uses: home-assistant/builder@2022.06.1
with:
args: |
$BUILD_ARGS \
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
fi
- name: Build base image
uses: home-assistant/builder@2022.03.1
uses: home-assistant/builder@2022.06.1
with:
args: |
$BUILD_ARGS \
Expand Down
5 changes: 3 additions & 2 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ ENV \
# Set shell
SHELL ["/bin/ash", "-o", "pipefail", "-c"]

# Version
# Build Args
ARG \
BASHIO_VERSION \
TEMPIO_VERSION \
S6_OVERLAY_VERSION \
JEMALLOC_VERSION
JEMALLOC_VERSION \
QEMU_CPU

# Base system
WORKDIR /usr/src
Expand Down
5 changes: 3 additions & 2 deletions debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ ENV \
# Set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# Version
# Build Args
ARG \
BASHIO_VERSION \
TEMPIO_VERSION \
S6_OVERLAY_VERSION
S6_OVERLAY_VERSION \
QEMU_CPU

# Base system
WORKDIR /usr/src
Expand Down
3 changes: 2 additions & 1 deletion python/3.10/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ FROM $BUILD_FROM
ARG \
PYTHON_VERSION \
PIP_VERSION \
GPG_KEY
GPG_KEY \
QEMU_CPU

# ensure local python is preferred over distribution python
ENV PATH /usr/local/bin:$PATH
Expand Down
3 changes: 2 additions & 1 deletion python/3.8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ FROM $BUILD_FROM
ARG \
PYTHON_VERSION \
PIP_VERSION \
GPG_KEY
GPG_KEY \
QEMU_CPU

# ensure local python is preferred over distribution python
ENV PATH /usr/local/bin:$PATH
Expand Down
3 changes: 2 additions & 1 deletion python/3.9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ FROM $BUILD_FROM
ARG \
PYTHON_VERSION \
PIP_VERSION \
GPG_KEY
GPG_KEY \
QEMU_CPU

# ensure local python is preferred over distribution python
ENV PATH /usr/local/bin:$PATH
Expand Down
5 changes: 3 additions & 2 deletions raspbian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ ENV \
# Set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# Version
# Build Args
ARG \
BASHIO_VERSION \
TEMPIO_VERSION \
S6_OVERLAY_VERSION
S6_OVERLAY_VERSION \
QEMU_CPU

# Base system
WORKDIR /usr/src
Expand Down

0 comments on commit 100e96c

Please sign in to comment.