mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
7 lines
207 B
Docker
7 lines
207 B
Docker
FROM alpine AS lighttpd
|
|
RUN apk --no-cache add lighttpd
|
|
FROM scratch
|
|
COPY --from=lighttpd /usr/sbin/lighttpd /usr/sbin/
|
|
COPY --from=lighttpd /lib /lib
|
|
COPY --from=lighttpd /usr/lib /usr/lib
|
|
WORKDIR /var/tmp
|