You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Alfis/contrib/docker/Dockerfile.alpine

24 lines
832 B
Docker

FROM alpine:3.15
LABEL Description="Alfis Alternative Free Identity System"
LABEL URL="https://github.com/Revertron/Alfis/releases"
ARG arch=amd64
ARG srv_port=4244
ARG dns_port=53
RUN apk add --no-cache curl && \
curl -SsL "https://github.com/Revertron/Alfis/releases/download/$(curl --silent "https://api.github.com/repos/Revertron/Alfis/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')/alfis-linux-${arch}-$(curl --silent "https://api.github.com/repos/Revertron/Alfis/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')-nogui" -o /usr/bin/alfis && \
chmod a+x /usr/bin/alfis && \
apk del curl
RUN /usr/bin/alfis -g > /etc/alfis.conf
EXPOSE ${srv_port}
EXPOSE ${dns_port}
EXPOSE ${dns_port}/udp
WORKDIR /var/lib/alfis
CMD ["/usr/bin/alfis", "-n", "-c", "/etc/alfis.conf"]