1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/lighttpd/Dockerfile
2023-01-22 21:47:12 +09:00

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