Simon Marsh
7b72a21517
All checks were successful
continuous-integration/drone/push Build is passing
21 lines
579 B
Docker
21 lines
579 B
Docker
###########################################################################
|
|
|
|
FROM alpine
|
|
MAINTAINER burble <simon@burble.com>
|
|
VOLUME /registry
|
|
|
|
###########################################################################
|
|
|
|
ADD whois42d /usr/local/bin/whois42d
|
|
RUN chmod 0555 /usr/local/bin/whois42d
|
|
|
|
###########################################################################
|
|
|
|
USER 1000
|
|
EXPOSE 8043
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/whois42d", "-port", "8043" ]
|
|
CMD [ "-registry", "/registry" ]
|
|
|
|
###########################################################################
|
|
# end of file |