add root-folder and files, Dockerfile and docker-compose.yml
All checks were successful
Docker Build Smart Logic / Build amd64 & arm64 (push) Successful in 13s
All checks were successful
Docker Build Smart Logic / Build amd64 & arm64 (push) Successful in 13s
This commit is contained in:
19
Dockerfile
19
Dockerfile
@@ -0,0 +1,19 @@
|
||||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23
|
||||
|
||||
LABEL description="Alpine Baseimage mit s6-overlay und 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"]
|
||||
|
||||
ENTRYPOINT ["/init"]
|
||||
Reference in New Issue
Block a user