11 lines
196 B
Docker
11 lines
196 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache lighttpd
|
|
|
|
COPY lighttpd.conf /etc/lighttpd/lighttpd.conf
|
|
|
|
COPY . /var/www/html
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"] |