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