Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore apk networkmanager, net-tools and sudo version in Dockefile. #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions hassio-hostapd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.0.4]
### Fixed
- Ignore apk networkmanager, net-tools and sudo version in Dockefile.

## [1.0.3]
### Fixed
- Update apk networkmanager and sudo in Dockefile.
Expand Down
2 changes: 1 addition & 1 deletion hassio-hostapd/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Hassio Hostapd",
"version": "1.0.3",
"version": "1.0.4",
"slug": "hassio-hostapd",
"description": "Raspberry Pi as hotspot in hass.io",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
Expand Down
4 changes: 3 additions & 1 deletion hassio-hostapd/hassio-hostapd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ENV LANG C.UTF-8

# Install requirements for add-on
RUN apk update && apk add --no-cache bash jq iw hostapd networkmanager=1.20.8-r0 net-tools=1.60_git20140218-r2 sudo=1.8.31-r0 && rm -rf /var/cache/apk/*
RUN apk update && \
apk add --no-cache bash jq iw hostapd networkmanager net-tools sudo && \
rm -rf /var/cache/apk/*


COPY hostapd.conf /
Expand Down