mirror of
https://github.com/Mesteriis/hassio-addons-avm.git
synced 2026-01-09 23:11:02 +01:00
15 lines
346 B
Docker
15 lines
346 B
Docker
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.0.1
|
|
# hadolint ignore=DL3006
|
|
FROM ${BUILD_FROM}
|
|
ENV LANG C.UTF-8
|
|
|
|
# Create directory for apache2 to store PID file
|
|
RUN mkdir /run/apache2
|
|
|
|
RUN apk --no-cache add busybox-extras curl grep coreutils sed xmlstarlet bash
|
|
|
|
# Copy data for add-on
|
|
COPY run.sh /
|
|
RUN chmod a+x /run.sh
|
|
CMD [ "/run.sh" ]
|