mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-03-07 21:21:50 +00:00
11 lines
138 B
Docker
11 lines
138 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
RUN apk add haproxy
|
|
|
|
COPY run.sh haproxy.cfg /
|
|
|
|
RUN chmod a+x /run.sh
|
|
CMD [ "/run.sh" ] |