exiles-ankerctl-hassio-addons/Dockerfile

19 lines
387 B
Text
Raw Normal View History

2023-05-23 13:06:09 +00:00
#################
# 1 Build Image #
#################
ARG BUILD_FROM
ARG BUILD_VERSION
FROM $BUILD_FROM
##################
# 2 Modify Image #
##################
# Set S6 wait time
ENV S6_CMD_WAIT_FOR_SERVICES=1 \
S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \
S6_SERVICES_GRACETIME=0 \
FLASK_HOST=0.0.0.0 \
FLASK_PORT=4470
LABEL org.opencontainers.image.version=${BUILD_VERSION}