mirror of
https://github.com/rlister/dockerfiles.git
synced 2025-12-12 17:26:15 +00:00
16 lines
233 B
Docker
16 lines
233 B
Docker
FROM progrium/busybox
|
|
|
|
MAINTAINER Ric Lister, rlister@gmail.com
|
|
|
|
RUN opkg-install openssl-util
|
|
|
|
WORKDIR /app
|
|
|
|
ADD htpasswd.sh /app/
|
|
RUN chmod 0755 htpasswd.sh
|
|
|
|
ENV CRYPT apr1
|
|
ENV OUTPUT /dev/stdout
|
|
|
|
ENTRYPOINT [ "/app/htpasswd.sh" ]
|