diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,7 @@ OBFS4_ENDPOINT ?= OBFS4_CERT ?= +TAG ?= 0.1 +OBFSVPN_IMAGE_NAME ?= leap/obfsvpn-test-server certs: curl -k https://black.riseup.net/ca.crt > /tmp/ca.crt @@ -45,3 +47,8 @@ test: check-yawning-obfs4: ./scripts/check-go-modules.sh + +obfsvpn-server-container: + docker build -t ${OBFSVPN_IMAGE_NAME}:${TAG} -f images/obfsvpn/Dockerfile \ + . --no-cache + |