switch to branch

This commit is contained in:
Jan-Henrik 2023-02-10 16:59:29 +01:00
parent 8bcf8156db
commit f868af8a6a
3 changed files with 3 additions and 9 deletions

View file

@ -1,9 +1,9 @@
ARG BUILD_FROM=ghcr.io/hassio-addons/base-python/amd64:9.0.1
FROM ${BUILD_FROM}
RUN apk add --no-cache nginx nginx-mod-http-lua
RUN apk add --no-cache nginx
ADD "https://github.com/jhbruhn/ZBS_Flasher/archive/refs/heads/rssi_fix.tar.gz" /src.tar.gz
ADD "https://github.com/jhbruhn/ZBS_Flasher/archive/refs/heads/case_insensitive_img.tar.gz" /src.tar.gz
RUN mkdir /src && tar xvfz /src.tar.gz -C /src --strip-components=1
RUN mv /src/CC2531_station/epaper_station_websocket/ /app

View file

@ -1,6 +1,6 @@
---
name: E-Paper Station
version: 1.0.0.46
version: 1.0.0.47
#image: ghcr.io/maxwinterstein/homeassistant-addon-toogoodtogo-ha-mqtt-bridge-{arch}
slug: epaper-station
description: Publish images to E-Paper pricetags

View file

@ -22,12 +22,6 @@ http {
allow 172.30.32.2;
deny all;
set_by_lua $uri_lowercase "return string.lower(ngx.var.uri)";
location ~[A-Z] {
return 301 $scheme://$http_host$uri_lowercase$is_args$args;
}
location / {
root /public;
}