Skip to content

Commit

Permalink
Upgrades add-on base image to v8.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vicfergar committed Nov 2, 2020
1 parent 7321e44 commit 15d204d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
13 changes: 8 additions & 5 deletions wave-sample/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
ARG BUILD_FROM=hassioaddons/base:8.0.1
ARG BUILD_FROM=hassioaddons/base:8.0.5
# hadolint ignore=DL3006
FROM ${BUILD_FROM}

# Set shell
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# Setup base
# hadolint ignore=DL3003
RUN \
apk add --no-cache --virtual .build-dependencies \
unzip=6.0-r7 \
unzip=6.0-r8 \
wget=1.20.3-r1 \
\
&& apk add --no-cache \
lua-resty-http=0.15-r0 \
nginx-mod-http-lua=1.18.0-r0 \
nginx=1.18.0-r0 \
nginx-mod-http-lua=1.18.0-r1 \
nginx=1.18.0-r1 \
\
&& apk del --no-cache --purge .build-dependencies \
&& rm -fr \
/etc/nginx

# Copy root filesystem
COPY rootfs /

Expand Down
10 changes: 5 additions & 5 deletions wave-sample/build.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"squash": false,
"build_from": {
"aarch64": "hassioaddons/base-aarch64:8.0.1",
"amd64": "hassioaddons/base-amd64:8.0.1",
"armhf": "hassioaddons/base-armhf:8.0.1",
"armv7": "hassioaddons/base-armv7:8.0.1",
"i386": "hassioaddons/base-i386:8.0.1"
"aarch64": "hassioaddons/base-aarch64:8.0.5",
"amd64": "hassioaddons/base-amd64:8.0.5",
"armhf": "hassioaddons/base-armhf:8.0.5",
"armv7": "hassioaddons/base-armv7:8.0.5",
"i386": "hassioaddons/base-i386:8.0.5"
},
"args": {}
}
Expand Down

0 comments on commit 15d204d

Please sign in to comment.