arvannginx 0.1.0

Rust bindings for ArvanNginx
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:latest

RUN apt-get update
RUN apt-get install -y clang git
RUN apt-get clean

RUN sed -i 's:# define IPPORT_RESERVED:// #define IPPORT_RESERVED:' /usr/include/netdb.h

ADD entrypoint.sh /opt/entrypoint.sh
RUN chmod +x /opt/entrypoint.sh

ENTRYPOINT ["/opt/entrypoint.sh"]