whois42d/Dockerfile
Simon Marsh 7b72a21517
All checks were successful
continuous-integration/drone/push Build is passing
fix dockerfile executable permissions
2023-09-25 11:27:41 +01:00

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