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.
20 lines
416 B
20 lines
416 B
FROM vectorim/element-web:v1.9.0 as builder
|
|
|
|
FROM alpine:latest
|
|
|
|
LABEL maintainer "me@jerryaldrichiii.com"
|
|
|
|
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 mime-types.conf /etc/lighttpd/mime-types.conf
|
|
|
|
COPY --from=builder /app /srv/http/
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"]
|
|
|