15 lines
305 B
Docker
15 lines
305 B
Docker
ARG BUILD_FROM="ghcr.io/home-assistant/amd64-base"
|
|
|
|
FROM ${BUILD_FROM} AS final
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
RUN echo "Install base requirements." \
|
|
&& apk add --no-cache ser2net
|
|
COPY rootfs/ /
|
|
WORKDIR /
|
|
|
|
# Make files executable
|
|
RUN chmod +x /etc/cont-init.d/*.sh
|
|
RUN chmod +x /etc/services.d/*/*
|