17 lines
369 B
Docker
17 lines
369 B
Docker
FROM git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23
|
|
|
|
LABEL description="Alpine Baseimage with s6-overlay and lighttpd"
|
|
LABEL build_version="Pi-Farm version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="Pi-Farm"
|
|
|
|
RUN apk add --no-cache \
|
|
lighttpd \
|
|
lighttpd-mod_auth
|
|
|
|
COPY root/ /
|
|
|
|
EXPOSE 80
|
|
|
|
VOLUME ["/config","/app/www"]
|
|
|
|
ENTRYPOINT ["/init"] |