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.
15 lines
312 B
15 lines
312 B
# Switch to alpine to serve content built above
|
|
FROM alpine:latest
|
|
|
|
EXPOSE 8080
|
|
|
|
RUN apk add --no-cache lighttpd=1.4.54-r0
|
|
|
|
RUN chown -R lighttpd /var/log/lighttpd
|
|
|
|
USER lighttpd
|
|
|
|
COPY lighttpd.conf /etc/lighttpd/lighttpd.conf
|
|
COPY static/ /srv/http/
|
|
|
|
CMD ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"]
|
|
|