A website guide for using Concordia
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.
|
|
|
FROM alpine:3.10 as base
|
|
|
|
LABEL maintainer="Fanakis Apostolos <apotwohd@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"]
|