mirror of
https://github.com/5etools-mirror-2/5etools-img.git
synced 2025-10-29 03:15:32 -05:00
13 lines
272 B
Docker
13 lines
272 B
Docker
FROM alpine
|
|
|
|
RUN apk update && apk add lighttpd rsync
|
|
|
|
CMD [ "lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf" ]
|
|
EXPOSE 80
|
|
|
|
WORKDIR /var/www/localhost/htdocs
|
|
|
|
COPY . img/
|
|
|
|
RUN mv img/docker/lighttpd.conf img/docker/mime-types.conf /etc/lighttpd/ && rm -rf img/docker/
|