You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
425 B
16 lines
425 B
FROM alpine:3.10 as base
|
|
LABEL maintainers.1="Fanakis Apostolos <apotwohd@gmail.com>"
|
|
LABEL maintainers.2="Panagiotis Nikolaidis <ezerous@gmail.com>"
|
|
|
|
RUN apk add --update --no-cache openrc lighttpd \
|
|
&& rm -rf /var/cache/apk/*
|
|
RUN rc-update add lighttpd default
|
|
|
|
FROM base as final
|
|
|
|
COPY lighttpd.conf /etc/lighttpd/lighttpd.conf
|
|
EXPOSE 8000
|
|
|
|
STOPSIGNAL SIGTERM
|
|
|
|
CMD ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"]
|
|
|