| |
| |
| |
| |
| |
| |
| |
| |
|
|
| FROM alpine:3.22 |
|
|
| ENV SWAN_VER=5.3 |
| WORKDIR /opt/src |
|
|
| RUN set -x \ |
| && apk add --no-cache \ |
| bash bind-tools coreutils openssl uuidgen wget xl2tpd iptables iptables-legacy \ |
| iproute2 libcap-ng libcurl libevent linux-pam musl nspr nss nss-tools openrc \ |
| bison flex gcc make libc-dev bsd-compat-headers linux-pam-dev \ |
| nss-dev libcap-ng-dev libevent-dev curl-dev nspr-dev \ |
| python3 py3-pip \ |
| && cd /sbin \ |
| && for fn in iptables iptables-save iptables-restore; do ln -fs xtables-legacy-multi "$fn"; done \ |
| && cd /opt/src \ |
| && wget -t 3 -T 30 -nv -O libreswan.tar.gz "https://github.com/libreswan/libreswan/archive/v${SWAN_VER}.tar.gz" \ |
| || wget -t 3 -T 30 -nv -O libreswan.tar.gz "https://download.libreswan.org/libreswan-${SWAN_VER}.tar.gz" \ |
| && tar xzf libreswan.tar.gz \ |
| && rm -f libreswan.tar.gz \ |
| && cd "libreswan-${SWAN_VER}" \ |
| && printf 'WERROR_CFLAGS=-w -s\nUSE_DNSSEC=false\nUSE_DH2=true\n' > Makefile.inc.local \ |
| && printf 'FINALNSSDIR=/etc/ipsec.d\nNSSDIR=/etc/ipsec.d\n' >> Makefile.inc.local \ |
| && make -s base \ |
| && make -s install-base \ |
| && cd /opt/src \ |
| && mkdir -p /run/openrc \ |
| && touch /run/openrc/softlevel \ |
| && rm -rf "/opt/src/libreswan-${SWAN_VER}" \ |
| && apk del --no-cache \ |
| bison flex gcc make libc-dev bsd-compat-headers linux-pam-dev \ |
| nss-dev libcap-ng-dev libevent-dev curl-dev nspr-dev |
|
|
| RUN wget -t 3 -T 30 -nv -O /opt/src/ikev2.sh https://github.com/hwdsl2/setup-ipsec-vpn/raw/ad61b354c57b3fa9871c04ec177bef2a93dd8eeb/extras/ikev2setup.sh \ |
| && chmod +x /opt/src/ikev2.sh \ |
| && ln -s /opt/src/ikev2.sh /usr/bin |
|
|
| |
| |
| |
| COPY requirements.txt /opt/src/ |
| RUN python3 -m venv /opt/venv && \ |
| /opt/venv/bin/pip install --no-cache-dir -r /opt/src/requirements.txt |
|
|
| |
| COPY ./run.sh /opt/src/run.sh |
| COPY /app.py /opt/src/app.py |
| RUN chmod 755 /opt/src/run.sh |
|
|
| EXPOSE 500/udp 4500/udp 8000 |
|
|
| |
| CMD ["/opt/venv/bin/python3", "/opt/src/app.py"] |
|
|
| ARG BUILD_DATE |
| ARG VERSION |
| ARG VCS_REF |
| ENV IMAGE_VER=$BUILD_DATE |
|
|
| LABEL maintainer="Lin Song <linsongui@gmail.com>" \ |
| org.opencontainers.image.created="$BUILD_DATE" \ |
| org.opencontainers.image.version="$VERSION" \ |
| org.opencontainers.image.revision="$VCS_REF" \ |
| org.opencontainers.image.authors="Lin Song <linsongui@gmail.com>" \ |
| org.opencontainers.image.title="IPsec VPN Server on Docker" \ |
| org.opencontainers.image.description="Docker image to run an IPsec VPN server, with IPsec/L2TP, Cisco IPsec and IKEv2." \ |
| org.opencontainers.image.url="https://github.com/hwdsl2/docker-ipsec-vpn-server" \ |
| org.opencontainers.image.source="https://github.com/hwdsl2/docker-ipsec-vpn-server" \ |
| org.opencontainers.image.documentation="https://github.com/hwdsl2/docker-ipsec-vpn-server" |
|
|